Package system
Class IAppDomainSetupImplementation
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.IAppDomainSetupImplementation
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IAppDomainSetup
public class IAppDomainSetupImplementation extends NetObject implements IAppDomainSetup
The base .NET class managing System.IAppDomainSetup, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IAppDomainSetup
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: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: mscorlibstatic java.lang.String
className
Qualified class name: System.IAppDomainSetupstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description IAppDomainSetupImplementation(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getApplicationBase()
java.lang.String
getApplicationName()
java.lang.String
getCachePath()
java.lang.String
getConfigurationFile()
java.lang.String
getDynamicBase()
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 Typejava.lang.String
getLicenseFile()
java.lang.String
getPrivateBinPath()
java.lang.String
getPrivateBinPathProbe()
java.lang.String
getShadowCopyDirectories()
java.lang.String
getShadowCopyFiles()
void
setApplicationBase(java.lang.String ApplicationBase)
void
setApplicationName(java.lang.String ApplicationName)
void
setCachePath(java.lang.String CachePath)
void
setConfigurationFile(java.lang.String ConfigurationFile)
void
setDynamicBase(java.lang.String DynamicBase)
void
setLicenseFile(java.lang.String LicenseFile)
void
setPrivateBinPath(java.lang.String PrivateBinPath)
void
setPrivateBinPathProbe(java.lang.String PrivateBinPathProbe)
void
setShadowCopyDirectories(java.lang.String ShadowCopyDirectories)
void
setShadowCopyFiles(java.lang.String ShadowCopyFiles)
static IAppDomainSetup
ToIAppDomainSetup(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoIAppDomainSetup
, a cast assert is made to check if types are compatible.-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
cast, Equals, Equals, GetHashCode, GetType, hashCode, setJCOInstance, toString, ToString
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: mscorlib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.IAppDomainSetup- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIAppDomainSetup
- 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 interfaceIAppDomainSetup
- 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 interfaceIAppDomainSetup
- 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 interfaceIAppDomainSetup
- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIAppDomainSetup
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
ToIAppDomainSetup
public static IAppDomainSetup ToIAppDomainSetup(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoIAppDomainSetup
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
IAppDomainSetup
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
getApplicationBase
public java.lang.String getApplicationBase() throws java.lang.Throwable
- Specified by:
getApplicationBase
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setApplicationBase
public void setApplicationBase(java.lang.String ApplicationBase) throws java.lang.Throwable
- Specified by:
setApplicationBase
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getApplicationName
public java.lang.String getApplicationName() throws java.lang.Throwable
- Specified by:
getApplicationName
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setApplicationName
public void setApplicationName(java.lang.String ApplicationName) throws java.lang.Throwable
- Specified by:
setApplicationName
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getCachePath
public java.lang.String getCachePath() throws java.lang.Throwable
- Specified by:
getCachePath
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setCachePath
public void setCachePath(java.lang.String CachePath) throws java.lang.Throwable
- Specified by:
setCachePath
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getConfigurationFile
public java.lang.String getConfigurationFile() throws java.lang.Throwable
- Specified by:
getConfigurationFile
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setConfigurationFile
public void setConfigurationFile(java.lang.String ConfigurationFile) throws java.lang.Throwable
- Specified by:
setConfigurationFile
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getDynamicBase
public java.lang.String getDynamicBase() throws java.lang.Throwable
- Specified by:
getDynamicBase
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setDynamicBase
public void setDynamicBase(java.lang.String DynamicBase) throws java.lang.Throwable
- Specified by:
setDynamicBase
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getLicenseFile
public java.lang.String getLicenseFile() throws java.lang.Throwable
- Specified by:
getLicenseFile
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setLicenseFile
public void setLicenseFile(java.lang.String LicenseFile) throws java.lang.Throwable
- Specified by:
setLicenseFile
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getPrivateBinPath
public java.lang.String getPrivateBinPath() throws java.lang.Throwable
- Specified by:
getPrivateBinPath
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setPrivateBinPath
public void setPrivateBinPath(java.lang.String PrivateBinPath) throws java.lang.Throwable
- Specified by:
setPrivateBinPath
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getPrivateBinPathProbe
public java.lang.String getPrivateBinPathProbe() throws java.lang.Throwable
- Specified by:
getPrivateBinPathProbe
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setPrivateBinPathProbe
public void setPrivateBinPathProbe(java.lang.String PrivateBinPathProbe) throws java.lang.Throwable
- Specified by:
setPrivateBinPathProbe
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getShadowCopyDirectories
public java.lang.String getShadowCopyDirectories() throws java.lang.Throwable
- Specified by:
getShadowCopyDirectories
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setShadowCopyDirectories
public void setShadowCopyDirectories(java.lang.String ShadowCopyDirectories) throws java.lang.Throwable
- Specified by:
setShadowCopyDirectories
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
getShadowCopyFiles
public java.lang.String getShadowCopyFiles() throws java.lang.Throwable
- Specified by:
getShadowCopyFiles
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
setShadowCopyFiles
public void setShadowCopyFiles(java.lang.String ShadowCopyFiles) throws java.lang.Throwable
- Specified by:
setShadowCopyFiles
in interfaceIAppDomainSetup
- Throws:
java.lang.Throwable
-
-