All Downloads are FREE. Search and download functionalities are using the official Maven repository.

system.activities.presentation.DesignerConfigurationService Maven / Gradle / Ivy

Go to download

A set of Java classes to use .NET from any JVM enabled language (Java, Kotlin, Scala and others)

There is a newer version: 1.15.0.0
Show newest version
/*
 *  MIT License
 *
 *  Copyright (c) 2024 MASES s.r.l.
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in all
 *  copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 *  SOFTWARE.
 */

/**************************************************************************************
 * 
 *      This code was generated from a template using JCOReflector v. 1.14.0.0
 * 
 *      Manual changes to this file may cause unexpected behavior in your application.
 *      Manual changes to this file will be overwritten if the code is regenerated.
 * 
 *************************************************************************************/

package system.activities.presentation;

import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;

// Import section
import system.runtime.versioning.FrameworkName;


/**
 * The base .NET class managing System.Activities.Presentation.DesignerConfigurationService, System.Activities.Presentation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
 * 

* * .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Activities.Presentation.DesignerConfigurationService *

* * Powered by JCOBridge: more info at https://www.jcobridge.com * * @author MASES s.r.l https://masesgroup.com * @version 1.14.0.0 */ public class DesignerConfigurationService extends NetObject { /** * Fully assembly qualified name: System.Activities.Presentation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 */ public static final String assemblyFullName = "System.Activities.Presentation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; /** * Assembly name: System.Activities.Presentation */ public static final String assemblyShortName = "System.Activities.Presentation"; /** * Qualified class name: System.Activities.Presentation.DesignerConfigurationService */ public static final String className = "System.Activities.Presentation.DesignerConfigurationService"; static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName); /** * The type managed from JCOBridge. See {@link JCType} */ public static JCType classType = createType(); static JCEnum enumInstance = null; JCObject classInstance = null; static JCType createType() { try { String classToCreate = className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); if (JCOReflector.getDebug()) JCOReflector.writeLog("Creating %s", classToCreate); JCType typeCreated = bridge.GetType(classToCreate); if (JCOReflector.getDebug()) JCOReflector.writeLog("Created: %s", (typeCreated != null) ? typeCreated.toString() : "Returned null value"); return typeCreated; } catch (JCException e) { JCOReflector.writeLog(e); return null; } } void addReference(String ref) throws Throwable { try { bridge.AddReference(ref); } catch (JCNativeException jcne) { throw translateException(jcne); } } /** * Internal constructor. Use with caution */ public DesignerConfigurationService(java.lang.Object instance) throws Throwable { super(instance); if (instance instanceof JCObject) { classInstance = (JCObject) instance; } else throw new Exception("Cannot manage object, it is not a JCObject"); } public String getJCOAssemblyName() { return assemblyFullName; } public String getJCOClassName() { return className; } public String getJCOObjectName() { return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); } public java.lang.Object getJCOInstance() { return classInstance; } public void setJCOInstance(JCObject instance) { classInstance = instance; super.setJCOInstance(classInstance); } public JCType getJCOType() { return classType; } /** * Try to cast the {@link IJCOBridgeReflected} instance into {@link DesignerConfigurationService}, a cast assert is made to check if types are compatible. * @param from {@link IJCOBridgeReflected} instance to be casted * @return {@link DesignerConfigurationService} instance * @throws java.lang.Throwable in case of error during cast operation */ public static DesignerConfigurationService cast(IJCOBridgeReflected from) throws Throwable { NetType.AssertCast(classType, from); return new DesignerConfigurationService(from.getJCOInstance()); } // Constructors section public DesignerConfigurationService() throws Throwable { } // Methods section // Properties section public boolean getAnnotationEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("AnnotationEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setAnnotationEnabled(boolean AnnotationEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("AnnotationEnabled", AnnotationEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getAutoConnectEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("AutoConnectEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setAutoConnectEnabled(boolean AutoConnectEnabled) throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("AutoConnectEnabled", AutoConnectEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getAutoSplitEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("AutoSplitEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setAutoSplitEnabled(boolean AutoSplitEnabled) throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("AutoSplitEnabled", AutoSplitEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getAutoSurroundWithSequenceEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("AutoSurroundWithSequenceEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setAutoSurroundWithSequenceEnabled(boolean AutoSurroundWithSequenceEnabled) throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("AutoSurroundWithSequenceEnabled", AutoSurroundWithSequenceEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getBackgroundValidationEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("BackgroundValidationEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setBackgroundValidationEnabled(boolean BackgroundValidationEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("BackgroundValidationEnabled", BackgroundValidationEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getLoadingFromUntrustedSourceEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("LoadingFromUntrustedSourceEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setLoadingFromUntrustedSourceEnabled(boolean LoadingFromUntrustedSourceEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("LoadingFromUntrustedSourceEnabled", LoadingFromUntrustedSourceEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getMultipleItemsContextMenuEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("MultipleItemsContextMenuEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setMultipleItemsContextMenuEnabled(boolean MultipleItemsContextMenuEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("MultipleItemsContextMenuEnabled", MultipleItemsContextMenuEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getMultipleItemsDragDropEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("MultipleItemsDragDropEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setMultipleItemsDragDropEnabled(boolean MultipleItemsDragDropEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("MultipleItemsDragDropEnabled", MultipleItemsDragDropEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getNamespaceConversionEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("NamespaceConversionEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setNamespaceConversionEnabled(boolean NamespaceConversionEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("NamespaceConversionEnabled", NamespaceConversionEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getPanModeEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("PanModeEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setPanModeEnabled(boolean PanModeEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("PanModeEnabled", PanModeEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getRubberBandSelectionEnabled() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("RubberBandSelectionEnabled"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setRubberBandSelectionEnabled(boolean RubberBandSelectionEnabled) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("RubberBandSelectionEnabled", RubberBandSelectionEnabled); } catch (JCNativeException jcne) { throw translateException(jcne); } } public FrameworkName getTargetFrameworkName() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject val = (JCObject)classInstance.Get("TargetFrameworkName"); return new FrameworkName(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public void setTargetFrameworkName(FrameworkName TargetFrameworkName) throws Throwable, system.IndexOutOfRangeException, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidOperationException, system.resources.MissingManifestResourceException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { classInstance.Set("TargetFrameworkName", TargetFrameworkName == null ? null : TargetFrameworkName.getJCOInstance()); } catch (JCNativeException jcne) { throw translateException(jcne); } } // Instance Events section }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy