blob: 2f4c905f36d606869736ae8937c430c0c74cf2bb [file] [log] [blame]
/*
* 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: LiteralBooleanOperations.java,v 1.6 2006/01/05 22:43:26 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.operations;
import org.eclipse.uml2.uml.LiteralBoolean;
/**
* <!-- begin-user-doc -->
* A static utility class that provides operations related to '<em><b>Literal Boolean</b></em>' model objects.
* <!-- end-user-doc -->
*
* <p>
* The following operations are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.LiteralBoolean#stringValue() <em>String Value</em>}</li>
* <li>{@link org.eclipse.uml2.uml.LiteralBoolean#isComputable() <em>Is Computable</em>}</li>
* <li>{@link org.eclipse.uml2.uml.LiteralBoolean#booleanValue() <em>Boolean Value</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class LiteralBooleanOperations
extends ValueSpecificationOperations {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected LiteralBooleanOperations() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The query isComputable() is redefined to be true.
* result = true
* <!-- end-model-doc -->
* @generated NOT
*/
public static boolean isComputable(LiteralBoolean literalBoolean) {
return true;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The query booleanValue() gives the value.
* result = value
* <!-- end-model-doc -->
* @generated NOT
*/
public static boolean booleanValue(LiteralBoolean literalBoolean) {
return literalBoolean.isValue();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static String stringValue(LiteralBoolean literalBoolean) {
return String.valueOf(literalBoolean.booleanValue());
}
} // LiteralBooleanOperations