org.eclipse.uml2.uml.LiteralString Maven / Gradle / Ivy
/*
* Copyright (c) 2005, 2006 IBM Corporation 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:
* IBM - initial API and implementation
*
* $Id: LiteralString.java,v 1.4 2006/05/12 20:38:06 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
*
* A representation of the model object 'Literal String'.
*
*
*
* A literal string is a specification of a string value.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.uml2.uml.LiteralString#getValue Value}
*
*
*
* @see org.eclipse.uml2.uml.UMLPackage#getLiteralString()
* @model
* @generated
*/
public interface LiteralString
extends LiteralSpecification {
/**
* Returns the value of the 'Value' attribute.
*
*
*
* The specified String value.
*
* @return the value of the 'Value' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #setValue(String)
* @see org.eclipse.uml2.uml.UMLPackage#getLiteralString_Value()
* @model unsettable="true" dataType="org.eclipse.uml2.uml.String" ordered="false"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.LiteralString#getValue Value}' attribute.
*
*
* @param value the new value of the 'Value' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #getValue()
* @generated
*/
void setValue(String value);
/**
* Unsets the value of the '{@link org.eclipse.uml2.uml.LiteralString#getValue Value}' attribute.
*
*
* @see #isSetValue()
* @see #getValue()
* @see #setValue(String)
* @generated
*/
void unsetValue();
/**
* Returns whether the value of the '{@link org.eclipse.uml2.uml.LiteralString#getValue Value}' attribute is set.
*
*
* @return whether the value of the 'Value' attribute is set.
* @see #unsetValue()
* @see #getValue()
* @see #setValue(String)
* @generated
*/
boolean isSetValue();
} // LiteralString
© 2015 - 2025 Weber Informatics LLC | Privacy Policy