org.eclipse.ocl.expressions.operations.CollectionLiteralPartOperations Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2008 Zeligsoft Inc., 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:
* Zeligsoft - Initial API and implementation
*
*
*
* $Id: CollectionLiteralPartOperations.java,v 1.1 2008/10/12 01:09:49 cdamus Exp $
*/
package org.eclipse.ocl.expressions.operations;
import org.eclipse.ocl.expressions.CollectionLiteralPart;
import org.eclipse.ocl.utilities.Visitor;
/**
*
* A static utility class that provides operations related to 'Collection Literal Part' model objects.
* @since 1.3
*
*
*
* The following operations are supported:
*
* - {@link org.eclipse.ocl.utilities.TypedElement#getName() Get Name}
* - {@link org.eclipse.ocl.utilities.TypedElement#getType() Get Type}
* - {@link org.eclipse.ocl.utilities.TypedElement#setName(java.lang.String) Set Name}
* - {@link org.eclipse.ocl.utilities.TypedElement#setType(java.lang.Object) Set Type}
* - {@link org.eclipse.ocl.utilities.Visitable#accept(org.eclipse.ocl.utilities.Visitor) Accept}
*
*
*
* @generated
*/
public class CollectionLiteralPartOperations {
/**
*
*
* @generated
*/
protected CollectionLiteralPartOperations() {
super();
}
/**
*
*
* @generated NOT
*/
public static String getName(
CollectionLiteralPart collectionLiteralPart) {
throw new UnsupportedOperationException();
}
/**
*
*
* @generated NOT
*/
public static C getType(CollectionLiteralPart collectionLiteralPart) {
throw new UnsupportedOperationException();
}
/**
*
*
* @generated NOT
*/
public static void setName(
CollectionLiteralPart collectionLiteralPart, String name) {
throw new UnsupportedOperationException();
}
/**
*
*
* @generated NOT
*/
public static void setType(
CollectionLiteralPart collectionLiteralPart, C type) {
throw new UnsupportedOperationException();
}
/**
*
*
* @generated NOT
*/
public static > T accept(
CollectionLiteralPart collectionLiteralPart, U v) {
throw new UnsupportedOperationException();
}
} // CollectionLiteralPartOperations