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

org.eclipse.uml2.uml.LiteralReal Maven / Gradle / Ivy

/*
 * Copyright (c) 2011, 2014 CEA and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Kenn Hussey (CEA) - initial API and implementation
 *   Christian W. Damus (CEA) - 251963
 *   Kenn Hussey (CEA) - 418466
 *
 */
package org.eclipse.uml2.uml;

/**
 * 
 * A representation of the model object 'Literal Real'.
 * 
 *
 * 
 * A LiteralReal is a specification of a Real value.
 * 

From package UML::Values.

* * *

* The following features are supported: *

    *
  • {@link org.eclipse.uml2.uml.LiteralReal#getValue Value}
  • *
*

* * @see org.eclipse.uml2.uml.UMLPackage#getLiteralReal() * @model * @generated */ public interface LiteralReal extends LiteralSpecification { /** * Returns the value of the 'Value' attribute. * *

* If the meaning of the 'Value' attribute isn't clear, * there really should be more of a description here... *

* * * The specified Real value. *

From package UML::Values.

* * @return the value of the 'Value' attribute. * @see #setValue(double) * @see org.eclipse.uml2.uml.UMLPackage#getLiteralReal_Value() * @model dataType="org.eclipse.uml2.types.Real" required="true" ordered="false" * @generated */ double getValue(); /** * Sets the value of the '{@link org.eclipse.uml2.uml.LiteralReal#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(double value); } // LiteralReal




© 2015 - 2025 Weber Informatics LLC | Privacy Policy