org.openmdx.preferences2.cci2.Root Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Generated by org.openmdx.application.mof.mapping.java.InstanceMapper 2.17.7
// Generated at 2020-11-27T16:04:08.245Z
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.preferences2.cci2;
/**
* Abstract class Root
*
* There are two separate trees of preference nodes, one for user preferences and one for system preferences.
* Each user has a separate user preference tree, and all users in a given system share the same system preference tree.
* The precise description of "user" and "system" will vary from implementation to implementation.
* Typical information stored in the user preference tree might include font choice, color choice, or preferred window location and size for a particular application.
* Typical information stored in the system preference tree might include installation configuration data for an application.
*/
public interface Root
extends org.openmdx.base.cci2.BasicObject{
// ----------------------------------------------------------------------------
// Instance/ReferenceGet0_nWithQuery
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the reference node
.
* @return A set containing all the elements for this reference.
*/
public org.openmdx.preferences2.cci2.RootHasNodes.Node getNode(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute type
.
* @return The non-null value for attribute type
.
*/
public java.lang.String getType(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute type
.
*
* This attribute is not changeable, i.e. its value can be set as long as the object is TRANSIENT or NEW
* @param type The non-null new value for attribute type
.
*/
public void setType(
java.lang.String type
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}