Package system.activities.dynamicupdate
Class NativeActivityUpdateContext
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.activities.dynamicupdate.NativeActivityUpdateContext
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class NativeActivityUpdateContext extends NetObject
The base .NET class managing System.Activities.DynamicUpdate.NativeActivityUpdateContext, System.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Activities.DynamicUpdate.NativeActivityUpdateContext
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.String
assemblyFullName
Fully assembly qualified name: System.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.String
assemblyShortName
Assembly name: System.Activitiesstatic java.lang.String
className
Qualified class name: System.Activities.DynamicUpdate.NativeActivityUpdateContextstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description NativeActivityUpdateContext()
NativeActivityUpdateContext(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NativeActivityUpdateContext
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoNativeActivityUpdateContext
, a cast assert is made to check if types are compatible.Bookmark
CreateBookmark()
Bookmark
CreateBookmark(java.lang.String name)
Bookmark
CreateBookmark(java.lang.String name, BookmarkCallback callback)
Bookmark
CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkOptions options)
Bookmark
CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkScope scope)
Bookmark
CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkScope scope, BookmarkOptions options)
Bookmark
CreateBookmark(BookmarkCallback callback)
Bookmark
CreateBookmark(BookmarkCallback callback, BookmarkOptions options)
void
DisallowUpdate(java.lang.String reason)
NetObject
FindExecutionProperty(java.lang.String name)
java.lang.String
getActivityInstanceId()
BookmarkScope
getDefaultBookmarkScope()
boolean
getIsCancellationRequested()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeNetObject
GetSavedOriginalValue(java.lang.String propertyName)
NetObject
GetSavedOriginalValue(Activity childActivity)
NetObject
GetValue(Argument argument)
NetObject
GetValue(RuntimeArgument runtimeArgument)
NetObject
GetValue(Variable variable)
boolean
IsNewlyAdded(Activity childActivity)
void
RemoveAllBookmarks()
boolean
RemoveBookmark(java.lang.String name)
boolean
RemoveBookmark(java.lang.String name, BookmarkScope scope)
boolean
RemoveBookmark(Bookmark bookmark)
void
ScheduleAction(ActivityAction activityAction, CompletionCallback onCompleted, FaultCallback onFaulted)
void
ScheduleActivity(Activity activity)
void
ScheduleActivity(Activity activity, CompletionCallback onCompleted)
void
ScheduleActivity(Activity activity, CompletionCallback onCompleted, FaultCallback onFaulted)
void
ScheduleActivity(Activity activity, FaultCallback onFaulted)
void
setJCOInstance(JCObject instance)
void
SetValue(Argument argument, NetObject value)
void
SetValue(Variable variable, NetObject value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Activities, 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.Activities- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Activities.DynamicUpdate.NativeActivityUpdateContext- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NativeActivityUpdateContext
public NativeActivityUpdateContext(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
NativeActivityUpdateContext
public NativeActivityUpdateContext() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static NativeActivityUpdateContext cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoNativeActivityUpdateContext
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
NativeActivityUpdateContext
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsNewlyAdded
public boolean IsNewlyAdded(Activity childActivity) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
RemoveBookmark
public boolean RemoveBookmark(Bookmark bookmark) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
RemoveBookmark
public boolean RemoveBookmark(java.lang.String name) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
RemoveBookmark
public boolean RemoveBookmark(java.lang.String name, BookmarkScope scope) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
CreateBookmark
public Bookmark CreateBookmark() throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, MulticastNotSupportedException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
MulticastNotSupportedException
ArgumentNullException
NotImplementedException
CultureNotFoundException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
-
CreateBookmark
public Bookmark CreateBookmark(BookmarkCallback callback) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, FormatException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
FormatException
-
CreateBookmark
public Bookmark CreateBookmark(BookmarkCallback callback, BookmarkOptions options) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
CreateBookmark
public Bookmark CreateBookmark(java.lang.String name) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
CreateBookmark
public Bookmark CreateBookmark(java.lang.String name, BookmarkCallback callback) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, FormatException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
FormatException
-
CreateBookmark
public Bookmark CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkOptions options) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
CreateBookmark
public Bookmark CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkScope scope) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
-
CreateBookmark
public Bookmark CreateBookmark(java.lang.String name, BookmarkCallback callback, BookmarkScope scope, BookmarkOptions options) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
FindExecutionProperty
public NetObject FindExecutionProperty(java.lang.String name) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetSavedOriginalValue
public NetObject GetSavedOriginalValue(Activity childActivity) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetSavedOriginalValue
public NetObject GetSavedOriginalValue(java.lang.String propertyName) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetValue
public NetObject GetValue(Argument argument) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetValue
public NetObject GetValue(RuntimeArgument runtimeArgument) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
GetValue
public NetObject GetValue(Variable variable) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
DisallowUpdate
public void DisallowUpdate(java.lang.String reason) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
RemoveAllBookmarks
public void RemoveAllBookmarks() throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, KeyNotFoundException
-
ScheduleAction
public void ScheduleAction(ActivityAction activityAction, CompletionCallback onCompleted, FaultCallback onFaulted) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
ScheduleActivity
public void ScheduleActivity(Activity activity) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, FormatException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
FormatException
-
ScheduleActivity
public void ScheduleActivity(Activity activity, CompletionCallback onCompleted) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, FormatException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
FormatException
-
ScheduleActivity
public void ScheduleActivity(Activity activity, CompletionCallback onCompleted, FaultCallback onFaulted) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException
-
ScheduleActivity
public void ScheduleActivity(Activity activity, FaultCallback onFaulted) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, FormatException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
ArgumentException
ArgumentNullException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
FormatException
-
SetValue
public void SetValue(Argument argument, NetObject value) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
SetValue
public void SetValue(Variable variable, NetObject value) throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
getIsCancellationRequested
public boolean getIsCancellationRequested() throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
getDefaultBookmarkScope
public BookmarkScope getDefaultBookmarkScope() throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
getActivityInstanceId
public java.lang.String getActivityInstanceId() throws java.lang.Throwable, IndexOutOfRangeException, ArgumentException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException
-
-