Package microsoft.jscript
Class CmdLineError
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.jscript.CmdLineError
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class CmdLineError extends NetObject
The base .NET class managing Microsoft.JScript.CmdLineError, Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.See: https://docs.microsoft.com/en-us/dotnet/api/Microsoft.JScript.CmdLineError
-
-
Field Summary
-
Constructor Summary
Constructors Constructor Description CmdLineError()
CmdLineError(Object instance)
Internal constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Type-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
cast, Equals, Equals, GetHashCode, GetType, hashCode, setJCOInstance, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: Microsoft.JScript- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: Microsoft.JScript.CmdLineError- See Also:
- Constant Field Values
-
NoError
public static CmdLineError NoError
-
AssemblyNotFound
public static CmdLineError AssemblyNotFound
-
CannotCreateEngine
public static CmdLineError CannotCreateEngine
-
CompilerConstant
public static CmdLineError CompilerConstant
-
DuplicateFileAsSourceAndAssembly
public static CmdLineError DuplicateFileAsSourceAndAssembly
-
DuplicateResourceFile
public static CmdLineError DuplicateResourceFile
-
DuplicateResourceName
public static CmdLineError DuplicateResourceName
-
DuplicateSourceFile
public static CmdLineError DuplicateSourceFile
-
ErrorSavingCompiledState
public static CmdLineError ErrorSavingCompiledState
-
InvalidAssembly
public static CmdLineError InvalidAssembly
-
InvalidCodePage
public static CmdLineError InvalidCodePage
-
InvalidDefinition
public static CmdLineError InvalidDefinition
-
InvalidLocaleID
public static CmdLineError InvalidLocaleID
-
InvalidTarget
public static CmdLineError InvalidTarget
-
InvalidSourceFile
public static CmdLineError InvalidSourceFile
-
InvalidWarningLevel
public static CmdLineError InvalidWarningLevel
-
MultipleOutputNames
public static CmdLineError MultipleOutputNames
-
MultipleTargets
public static CmdLineError MultipleTargets
-
MissingDefineArgument
public static CmdLineError MissingDefineArgument
-
MissingExtension
public static CmdLineError MissingExtension
-
MissingLibArgument
public static CmdLineError MissingLibArgument
-
MissingVersionInfo
public static CmdLineError MissingVersionInfo
-
ManagedResourceNotFound
public static CmdLineError ManagedResourceNotFound
-
NestedResponseFiles
public static CmdLineError NestedResponseFiles
-
NoCodePage
public static CmdLineError NoCodePage
-
NoFileName
public static CmdLineError NoFileName
-
NoInputSourcesSpecified
public static CmdLineError NoInputSourcesSpecified
-
NoLocaleID
public static CmdLineError NoLocaleID
-
NoWarningLevel
public static CmdLineError NoWarningLevel
-
ResourceNotFound
public static CmdLineError ResourceNotFound
-
UnknownOption
public static CmdLineError UnknownOption
-
InvalidVersion
public static CmdLineError InvalidVersion
-
SourceFileTooBig
public static CmdLineError SourceFileTooBig
-
MultipleWin32Resources
public static CmdLineError MultipleWin32Resources
-
MissingReference
public static CmdLineError MissingReference
-
SourceNotFound
public static CmdLineError SourceNotFound
-
InvalidCharacters
public static CmdLineError InvalidCharacters
-
InvalidForCompilerOptions
public static CmdLineError InvalidForCompilerOptions
-
IncompatibleTargets
public static CmdLineError IncompatibleTargets
-
InvalidPlatform
public static CmdLineError InvalidPlatform
-
LAST
public static CmdLineError LAST
-
Unspecified
public static CmdLineError Unspecified
-
-
Constructor Detail
-
CmdLineError
public CmdLineError(Object instance)
Internal constructor. Use with caution
-
CmdLineError
public CmdLineError()
-
-
Method Detail
-
getJCOAssemblyName
public 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 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 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 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
-
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
-
-