Class WorkflowOutlineNode
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.windows.forms.TreeNode
-
- system.workflow.componentmodel.design.WorkflowOutlineNode
-
- All Implemented Interfaces:
IJCOBridgeReflected,ISerializable
public class WorkflowOutlineNode extends TreeNode
The base .NET class managing System.Workflow.ComponentModel.Design.WorkflowOutlineNode, System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Workflow.ComponentModel.Design.WorkflowOutlineNode
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.StringassemblyShortNameAssembly name: System.Workflow.ComponentModelstatic java.lang.StringclassNameQualified class name: System.Workflow.ComponentModel.Design.WorkflowOutlineNodestatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description WorkflowOutlineNode()WorkflowOutlineNode(java.lang.Object instance)Internal constructor.WorkflowOutlineNode(Activity activity)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkflowOutlineNodecast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoWorkflowOutlineNode, a cast assert is made to check if types are compatible.ActivitygetActivity()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypevoidOnActivityRename(java.lang.String newName)voidRefreshNode()voidsetJCOInstance(JCObject instance)-
Methods inherited from class system.windows.forms.TreeNode
BeginEdit, Clone, Collapse, Collapse, EndEdit, EnsureVisible, Expand, ExpandAll, getBackColor, getBounds, getChecked, getContextMenu, getContextMenuStrip, getFirstNode, getForeColor, getFullPath, getImageIndex, getImageKey, getIndex, getIsEditing, getIsExpanded, getIsSelected, getIsVisible, getLastNode, getLevel, getName, getNextNode, getNextVisibleNode, GetNodeCount, getNodeFont, getNodes, getParent, getPrevNode, getPrevVisibleNode, getSelectedImageIndex, getSelectedImageKey, getStateImageIndex, getStateImageKey, getTag, getText, getToolTipText, getTreeView, Remove, setBackColor, setChecked, setContextMenu, setContextMenuStrip, setForeColor, setImageIndex, setImageKey, setName, setNodeFont, setSelectedImageIndex, setSelectedImageKey, setStateImageIndex, setStateImageKey, setTag, setText, setToolTipText, Toggle
-
Methods inherited from class system.MarshalByRefObject
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.runtime.serialization.ISerializable
GetObjectData
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Workflow.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Workflow.ComponentModel- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Workflow.ComponentModel.Design.WorkflowOutlineNode- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WorkflowOutlineNode
public WorkflowOutlineNode(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
WorkflowOutlineNode
public WorkflowOutlineNode() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
WorkflowOutlineNode
public WorkflowOutlineNode(Activity activity) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Specified by:
getJCOAssemblyNamein interfaceISerializable- Overrides:
getJCOAssemblyNamein classTreeNode- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Specified by:
getJCOClassNamein interfaceISerializable- Overrides:
getJCOClassNamein classTreeNode- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Specified by:
getJCOObjectNamein interfaceISerializable- Overrides:
getJCOObjectNamein classTreeNode- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Specified by:
getJCOInstancein interfaceISerializable- Overrides:
getJCOInstancein classTreeNode- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classTreeNode
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Specified by:
getJCOTypein interfaceISerializable- Overrides:
getJCOTypein classTreeNode- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static WorkflowOutlineNode cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoWorkflowOutlineNode, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
WorkflowOutlineNodeinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
OnActivityRename
public void OnActivityRename(java.lang.String newName) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, OutOfMemoryException, ArgumentException, ArgumentNullException, CultureNotFoundException, NotSupportedException, IndexOutOfRangeException, FormatException, ObjectDisposedException, Win32Exception, SecurityException
-
RefreshNode
public void RefreshNode() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, PlatformNotSupportedException, NotSupportedException, KeyNotFoundException, ConfigurationErrorsException, NullReferenceException, InvalidCastException, WorkflowMarkupSerializationException, MissingMethodException, TargetInvocationException, ExternalException, Win32Exception, OutOfMemoryException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionFormatExceptionPlatformNotSupportedExceptionNotSupportedExceptionKeyNotFoundExceptionConfigurationErrorsExceptionNullReferenceExceptionInvalidCastExceptionWorkflowMarkupSerializationExceptionMissingMethodExceptionTargetInvocationExceptionExternalExceptionWin32ExceptionOutOfMemoryException
-
getActivity
public Activity getActivity() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-