blob: 04a8c5ac21f7b920d5dcf283dd2ece3ab59ef470 [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 v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* 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();
}