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=4.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.StringassemblyFullNameFully assembly qualified name: PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.StringassemblyShortNameAssembly name: PresentationFrameworkstatic java.lang.StringclassNameQualified class name: System.Windows.ResourceDictionarystatic JCTypeclassTypeThe 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 voidAdd(NetObject key, NetObject value)voidBeginInit()static ResourceDictionarycast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoResourceDictionary, a cast assert is made to check if types are compatible.voidClear()booleanContains(NetObject key)voidCopyTo(DictionaryEntry[] array, int arrayIndex)voidEndInit()NetObjectFindName(java.lang.String name)intgetCount()DeferrableContentgetDeferrableContent()booleangetInvalidatesImplicitDataTemplateResources()booleangetIsFixedSize()booleangetIsReadOnly()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeICollectiongetKeys()UrigetSource()ICollectiongetValues()voidRegisterName(java.lang.String name, NetObject scopedElement)voidRemove(NetObject key)voidsetDeferrableContent(DeferrableContent DeferrableContent)voidsetInvalidatesImplicitDataTemplateResources(boolean InvalidatesImplicitDataTemplateResources)voidsetIsReadOnly(boolean IsReadOnly)voidsetJCOInstance(JCObject instance)voidsetSource(Uri Source)voidUnregisterName(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=4.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.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
ResourceDictionary
public ResourceDictionary() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classNetObjectEnumerable- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classNetObjectEnumerable- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classNetObjectEnumerable- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classNetObjectEnumerable- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classNetObjectEnumerable
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classNetObjectEnumerable- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static ResourceDictionary cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoResourceDictionary, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
ResourceDictionaryinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
Contains
public boolean Contains(NetObject key) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, ArgumentOutOfRangeException, InvalidOperationException, MissingManifestResourceException, InvalidEnumArgumentException
- Throws:
java.lang.ThrowableArgumentNullExceptionObjectDisposedExceptionAbandonedMutexExceptionArgumentExceptionNotSupportedExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionMissingManifestResourceExceptionInvalidEnumArgumentException
-
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, ArgumentException, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, OutOfMemoryException, InvalidEnumArgumentException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentNullExceptionFormatExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionOutOfMemoryExceptionInvalidEnumArgumentException
-
BeginInit
public void BeginInit() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, AbandonedMutexException
-
Clear
public void Clear() throws java.lang.Throwable, ArgumentException, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, InvalidCastException, InvalidEnumArgumentException
-
CopyTo
public void CopyTo(DictionaryEntry[] array, int arrayIndex) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, MissingManifestResourceException, InvalidOperationException, ConfigurationErrorsException, OutOfMemoryException, IndexOutOfRangeException, XamlParseException, ObjectDisposedException, EndOfStreamException, XamlException, NotImplementedException, KeyNotFoundException, IOException, NotSupportedException, SecurityException, XamlParseException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionInvalidOperationExceptionConfigurationErrorsExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionXamlParseExceptionObjectDisposedExceptionEndOfStreamExceptionXamlExceptionNotImplementedExceptionKeyNotFoundExceptionIOExceptionNotSupportedExceptionSecurityException
-
EndInit
public void EndInit() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, AbandonedMutexException, MulticastNotSupportedException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionAbandonedMutexExceptionMulticastNotSupportedException
-
RegisterName
public void RegisterName(java.lang.String name, NetObject scopedElement) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, AbandonedMutexException, NotSupportedException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionAbandonedMutexExceptionNotSupportedException
-
Remove
public void Remove(NetObject key) throws java.lang.Throwable, ArgumentException, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, 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- Throws:
java.lang.Throwable
-
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, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, AbandonedMutexException, InvalidEnumArgumentException, UriFormatException, OutOfMemoryException, SecurityException, MemberAccessException, NullReferenceException, NotSupportedException, ConfigurationErrorsException, InvalidCastException, WebException, Win32Exception, CookieException, RankException, IOException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionAbandonedMutexExceptionInvalidEnumArgumentExceptionUriFormatExceptionOutOfMemoryExceptionSecurityExceptionMemberAccessExceptionNullReferenceExceptionNotSupportedExceptionConfigurationErrorsExceptionInvalidCastExceptionWebExceptionWin32ExceptionCookieExceptionRankExceptionIOExceptionPlatformNotSupportedException
-
getDeferrableContent
public DeferrableContent getDeferrableContent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDeferrableContent
public void setDeferrableContent(DeferrableContent DeferrableContent) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, ObjectDisposedException, EndOfStreamException, ThreadAbortException, KeyNotFoundException, NotImplementedException, FormatException, XamlException, XamlParseException, XamlSchemaException, IOException, OutOfMemoryException, NotSupportedException, NullReferenceException, Win32Exception
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentExceptionArgumentNullExceptionMissingManifestResourceExceptionInvalidOperationExceptionObjectDisposedExceptionEndOfStreamExceptionThreadAbortExceptionKeyNotFoundExceptionNotImplementedExceptionFormatExceptionXamlExceptionXamlParseExceptionXamlSchemaExceptionIOExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionWin32Exception
-
-