blob: 52f89a31f56ae27d3a1504b2b1c729641bde2a2c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2005 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.java;
/*
*/
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();
}