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

org.omg.dd.dc.DCRoot Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012 - 2024 Data In Motion and others.
 * All rights reserved. 
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 * 
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *      Mark Hoffmann - initial API and implementation
 */
package org.omg.dd.dc;

import org.eclipse.emf.common.util.EMap;

import org.eclipse.emf.ecore.EObject;

import org.eclipse.emf.ecore.util.FeatureMap;

import org.osgi.annotation.versioning.ProviderType;

/**
 * 
 * A representation of the model object 'DC Root'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.dd.dc.DCRoot#getMixed Mixed}
  • *
  • {@link org.omg.dd.dc.DCRoot#getXMLNSPrefixMap XMLNS Prefix Map}
  • *
  • {@link org.omg.dd.dc.DCRoot#getXSISchemaLocation XSI Schema Location}
  • *
  • {@link org.omg.dd.dc.DCRoot#getBounds Bounds}
  • *
  • {@link org.omg.dd.dc.DCRoot#getFont Font}
  • *
  • {@link org.omg.dd.dc.DCRoot#getPoint Point}
  • *
* * @see org.omg.dd.dc.DcPackage#getDCRoot() * @model extendedMetaData="name='' kind='mixed'" * @generated */ @ProviderType public interface DCRoot extends EObject { /** * Returns the value of the 'Mixed' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * * * @return the value of the 'Mixed' attribute list. * @see org.omg.dd.dc.DcPackage#getDCRoot_Mixed() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='elementWildcard' name=':mixed'" * @generated */ FeatureMap getMixed(); /** * Returns the value of the 'XMLNS Prefix Map' map. * The key is of type {@link java.lang.String}, * and the value is of type {@link java.lang.String}, * * * @return the value of the 'XMLNS Prefix Map' map. * @see org.omg.dd.dc.DcPackage#getDCRoot_XMLNSPrefixMap() * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>" transient="true" * extendedMetaData="kind='attribute' name='xmlns:prefix'" * @generated */ EMap getXMLNSPrefixMap(); /** * Returns the value of the 'XSI Schema Location' map. * The key is of type {@link java.lang.String}, * and the value is of type {@link java.lang.String}, * * * @return the value of the 'XSI Schema Location' map. * @see org.omg.dd.dc.DcPackage#getDCRoot_XSISchemaLocation() * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>" transient="true" * extendedMetaData="kind='attribute' name='xsi:schemaLocation'" * @generated */ EMap getXSISchemaLocation(); /** * Returns the value of the 'Bounds' containment reference. * * * @return the value of the 'Bounds' containment reference. * @see #setBounds(Bounds) * @see org.omg.dd.dc.DcPackage#getDCRoot_Bounds() * @model containment="true" upper="-2" transient="true" volatile="true" derived="true" * extendedMetaData="kind='element' name='Bounds' namespace='http://www.omg.org/spec/DD/20100524/DC'" * @generated */ Bounds getBounds(); /** * Sets the value of the '{@link org.omg.dd.dc.DCRoot#getBounds Bounds}' containment reference. * * * @param value the new value of the 'Bounds' containment reference. * @see #getBounds() * @generated */ void setBounds(Bounds value); /** * Returns the value of the 'Font' containment reference. * * * @return the value of the 'Font' containment reference. * @see #setFont(Font) * @see org.omg.dd.dc.DcPackage#getDCRoot_Font() * @model containment="true" upper="-2" transient="true" volatile="true" derived="true" * extendedMetaData="kind='element' name='Font' namespace='http://www.omg.org/spec/DD/20100524/DC'" * @generated */ Font getFont(); /** * Sets the value of the '{@link org.omg.dd.dc.DCRoot#getFont Font}' containment reference. * * * @param value the new value of the 'Font' containment reference. * @see #getFont() * @generated */ void setFont(Font value); /** * Returns the value of the 'Point' containment reference. * * * @return the value of the 'Point' containment reference. * @see #setPoint(Point) * @see org.omg.dd.dc.DcPackage#getDCRoot_Point() * @model containment="true" upper="-2" transient="true" volatile="true" derived="true" * extendedMetaData="kind='element' name='Point' namespace='http://www.omg.org/spec/DD/20100524/DC'" * @generated */ Point getPoint(); /** * Sets the value of the '{@link org.omg.dd.dc.DCRoot#getPoint Point}' containment reference. * * * @param value the new value of the 'Point' containment reference. * @see #getPoint() * @generated */ void setPoint(Point value); } // DCRoot




© 2015 - 2024 Weber Informatics LLC | Privacy Policy