Package system.web.ui.design
Class WebFormsRootDesigner
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.ui.design.WebFormsRootDesigner
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
,IDesignerFilter
,IDisposable
public class WebFormsRootDesigner extends NetObject implements IDisposable, IDesignerFilter, java.lang.AutoCloseable
The base .NET class managing System.Web.UI.Design.WebFormsRootDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.UI.Design.WebFormsRootDesigner
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.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Designstatic java.lang.String
className
Qualified class name: System.Web.UI.Design.WebFormsRootDesignerstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description WebFormsRootDesigner()
WebFormsRootDesigner(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
AddClientScriptToDocument(ClientScriptItem scriptItem)
java.lang.String
AddControlToDocument(Control newControl, Control referenceControl, ControlLocation location)
void
addLoadComplete(EventHandler handler)
static WebFormsRootDesigner
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoWebFormsRootDesigner
, a cast assert is made to check if types are compatible.void
close()
java.lang.String
GenerateEmptyDesignTimeHtml(Control control)
java.lang.String
GenerateErrorDesignTimeHtml(Control control, NetException e, java.lang.String errorMessage)
ClientScriptItemCollection
GetClientScriptsInDocument()
IComponent
getComponent()
CultureInfo
getCurrentCulture()
java.lang.String
getDocumentUrl()
boolean
getIsDesignerViewLocked()
boolean
getIsLoading()
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 TypeWebFormsReferenceManager
getReferenceManager()
void
Initialize(IComponent component)
void
RemoveClientScriptFromDocument(java.lang.String clientScriptId)
void
RemoveControlFromDocument(Control control)
void
removeLoadComplete(EventHandler handler)
java.lang.String
ResolveUrl(java.lang.String relativeUrl)
void
setComponent(IComponent Component)
void
SetControlID(Control control, java.lang.String id)
void
setJCOInstance(JCObject instance)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.componentmodel.design.IDesignerFilter
PostFilterAttributes, PostFilterEvents, PostFilterProperties, PreFilterAttributes, PreFilterEvents, PreFilterProperties
-
Methods inherited from interface system.IDisposable
Dispose
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Design- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.UI.Design.WebFormsRootDesigner- 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 interfaceIDesignerFilter
- Specified by:
getJCOAssemblyName
in interfaceIDisposable
- 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 interfaceIDesignerFilter
- Specified by:
getJCOClassName
in interfaceIDisposable
- 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 interfaceIDesignerFilter
- Specified by:
getJCOObjectName
in interfaceIDisposable
- 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 interfaceIDesignerFilter
- Specified by:
getJCOInstance
in interfaceIDisposable
- 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 interfaceIDesignerFilter
- Specified by:
getJCOType
in interfaceIDisposable
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static WebFormsRootDesigner cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoWebFormsRootDesigner
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
WebFormsRootDesigner
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
AddControlToDocument
public java.lang.String AddControlToDocument(Control newControl, Control referenceControl, ControlLocation location) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GenerateEmptyDesignTimeHtml
public java.lang.String GenerateEmptyDesignTimeHtml(Control control) throws java.lang.Throwable, ArgumentException, ThreadAbortException, InvalidOperationException, ArgumentNullException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, IndexOutOfRangeException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentException
ThreadAbortException
InvalidOperationException
ArgumentNullException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
IndexOutOfRangeException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GenerateErrorDesignTimeHtml
public java.lang.String GenerateErrorDesignTimeHtml(Control control, NetException e, java.lang.String errorMessage) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ConfigurationException, ArgumentOutOfRangeException, IndexOutOfRangeException, NotImplementedException, NotSupportedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ThreadAbortException
ArgumentNullException
MissingMethodException
TargetInvocationException
ConfigurationException
ArgumentOutOfRangeException
IndexOutOfRangeException
NotImplementedException
NotSupportedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
ResolveUrl
public java.lang.String ResolveUrl(java.lang.String relativeUrl) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SecurityException, MemberAccessException, NullReferenceException, ConfigurationException, UriFormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SecurityException
MemberAccessException
NullReferenceException
ConfigurationException
UriFormatException
OutOfMemoryException
-
GetClientScriptsInDocument
public ClientScriptItemCollection GetClientScriptsInDocument() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
AddClientScriptToDocument
public void AddClientScriptToDocument(ClientScriptItem scriptItem) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Initialize
public void Initialize(IComponent component) throws java.lang.Throwable, InvalidOperationException, ArgumentNullException, TypeLoadException, ArgumentException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, NotImplementedException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, FormatException, ConfigurationErrorsException, OutOfMemoryException, IndexOutOfRangeException, SecurityException, ConfigurationException
- Throws:
java.lang.Throwable
InvalidOperationException
ArgumentNullException
TypeLoadException
ArgumentException
MissingMethodException
TargetInvocationException
NotSupportedException
CultureNotFoundException
NotImplementedException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
FormatException
ConfigurationErrorsException
OutOfMemoryException
IndexOutOfRangeException
SecurityException
ConfigurationException
-
RemoveClientScriptFromDocument
public void RemoveClientScriptFromDocument(java.lang.String clientScriptId) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
RemoveControlFromDocument
public void RemoveControlFromDocument(Control control) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetControlID
public void SetControlID(Control control, java.lang.String id) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getIsDesignerViewLocked
public boolean getIsDesignerViewLocked() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsLoading
public boolean getIsLoading() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getComponent
public IComponent getComponent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setComponent
public void setComponent(IComponent Component) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCurrentCulture
public CultureInfo getCurrentCulture() throws java.lang.Throwable, ArgumentNullException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException
-
getDocumentUrl
public java.lang.String getDocumentUrl() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getReferenceManager
public WebFormsReferenceManager getReferenceManager() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addLoadComplete
public void addLoadComplete(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeLoadComplete
public void removeLoadComplete(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-