Package system.windows
Class ResourceDictionary
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- org.mases.jcobridge.netreflection.NetObjectEnumerable
-
- system.windows.ResourceDictionary
-
- All Implemented Interfaces:
java.lang.Iterable<NetObject>
,IEnumerable
,IJCOBridgeReflected
public class ResourceDictionary extends NetObjectEnumerable
The base .NET class managing System.Windows.ResourceDictionary, PresentationFramework, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.ResourceDictionary
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: PresentationFramework, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.String
assemblyShortName
Assembly name: PresentationFrameworkstatic java.lang.String
className
Qualified class name: System.Windows.ResourceDictionarystatic JCType
classType
The type managed from JCOBridge.-
Fields inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
Null
-
-
Constructor Summary
Constructors Constructor Description ResourceDictionary()
ResourceDictionary(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
Add(NetObject key, NetObject value)
void
BeginInit()
static ResourceDictionary
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoResourceDictionary
, a cast assert is made to check if types are compatible.void
Clear()
boolean
Contains(NetObject key)
void
CopyTo(DictionaryEntry[] array, int arrayIndex)
void
EndInit()
NetObject
FindName(java.lang.String name)
int
getCount()
DeferrableContent
getDeferrableContent()
boolean
getInvalidatesImplicitDataTemplateResources()
boolean
getIsFixedSize()
boolean
getIsReadOnly()
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 TypeICollection
getKeys()
Uri
getSource()
ICollection
getValues()
void
RegisterName(java.lang.String name, NetObject scopedElement)
void
Remove(NetObject key)
void
setDeferrableContent(DeferrableContent DeferrableContent)
void
setInvalidatesImplicitDataTemplateResources(boolean InvalidatesImplicitDataTemplateResources)
void
setIsReadOnly(boolean IsReadOnly)
void
setJCOInstance(JCObject instance)
void
setSource(Uri Source)
void
UnregisterName(java.lang.String name)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
GetEnumerator, iterator
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: PresentationFramework, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: PresentationFramework- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Windows.ResourceDictionary- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ResourceDictionary
public ResourceDictionary(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
ResourceDictionary
public ResourceDictionary() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException
-
-
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 classNetObjectEnumerable
- 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 classNetObjectEnumerable
- 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 classNetObjectEnumerable
- 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 classNetObjectEnumerable
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObjectEnumerable
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObjectEnumerable
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static ResourceDictionary cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoResourceDictionary
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
ResourceDictionary
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Contains
public boolean Contains(NetObject key) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, PlatformNotSupportedException, ObjectDisposedException, SecurityException, IOException, UnauthorizedAccessException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidOperationException
PlatformNotSupportedException
ObjectDisposedException
SecurityException
IOException
UnauthorizedAccessException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
InvalidEnumArgumentException
-
FindName
public NetObject FindName(java.lang.String name) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Add
public void Add(NetObject key, NetObject value) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException, RankException, FormatException, InvalidCastException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
IndexOutOfRangeException
ArrayTypeMismatchException
OutOfMemoryException
RankException
FormatException
InvalidCastException
InvalidEnumArgumentException
-
BeginInit
public void BeginInit() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
Clear
public void Clear() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, InvalidCastException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
ArgumentException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
InvalidCastException
InvalidEnumArgumentException
-
CopyTo
public void CopyTo(DictionaryEntry[] array, int arrayIndex) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, XamlParseException, XamlException, NotImplementedException, KeyNotFoundException, IOException, XamlParseException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
ArgumentException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
XamlParseException
XamlException
NotImplementedException
KeyNotFoundException
IOException
-
EndInit
public void EndInit() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, MulticastNotSupportedException
-
RegisterName
public void RegisterName(java.lang.String name, NetObject scopedElement) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, NotSupportedException
-
Remove
public void Remove(NetObject key) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException, InvalidCastException, InvalidEnumArgumentException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
ArgumentException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
FormatException
InvalidCastException
InvalidEnumArgumentException
-
UnregisterName
public void UnregisterName(java.lang.String name) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getInvalidatesImplicitDataTemplateResources
public boolean getInvalidatesImplicitDataTemplateResources() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setInvalidatesImplicitDataTemplateResources
public void setInvalidatesImplicitDataTemplateResources(boolean InvalidatesImplicitDataTemplateResources) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsFixedSize
public boolean getIsFixedSize() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsReadOnly
public boolean getIsReadOnly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIsReadOnly
public void setIsReadOnly(boolean IsReadOnly) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
-
getCount
public int getCount() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getKeys
public ICollection getKeys() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getValues
public ICollection getValues() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getSource
public Uri getSource() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSource
public void setSource(Uri Source) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidEnumArgumentException, UriFormatException, OutOfMemoryException, NotSupportedException, WebException, Win32Exception, CookieException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
InvalidEnumArgumentException
UriFormatException
OutOfMemoryException
NotSupportedException
WebException
Win32Exception
CookieException
IOException
-
getDeferrableContent
public DeferrableContent getDeferrableContent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDeferrableContent
public void setDeferrableContent(DeferrableContent DeferrableContent) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, InvalidOperationException, ObjectDisposedException, ArrayTypeMismatchException, IOException, NotImplementedException, FormatException, KeyNotFoundException, XamlException, XamlParseException, XamlSchemaException, CultureNotFoundException, OutOfMemoryException, NotSupportedException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentNullException
InvalidOperationException
ObjectDisposedException
ArrayTypeMismatchException
IOException
NotImplementedException
FormatException
KeyNotFoundException
XamlException
XamlParseException
XamlSchemaException
CultureNotFoundException
OutOfMemoryException
NotSupportedException
Win32Exception
-
-