blob: cc22ac63b58228785d1ebbcb98e8c8ecd0086db7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.java;
/*
* $RCSfile: Block.java,v $
* $Revision: 1.2 $ $Date: 2004/08/27 15:33:17 $
*/
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* @generated
*/
public interface Block extends EObject{
/**
* @generated This field/method will be replaced during code generation
* @return The value of the Source attribute
*/
String getSource();
/**
* @generated This field/method will be replaced during code generation
* @param value The new value of the Source attribute
*/
void setSource(String value);
/**
* @generated This field/method will be replaced during code generation
* @return The value of the Name attribute
*/
String getName();
/**
* @generated This field/method will be replaced during code generation
* @param value The new value of the Name attribute
*/
void setName(String value);
/**
* @generated This field/method will be replaced during code generation
* @return The list of Contents references
*/
EList getContents();
}