/** * Copyright (c) 2001-2011 Mad Cow Entertainment and Corporation * 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: �bel Heged�s - initial API and implementation */ package madcow.magic.database.core; import madcow.magic.database.set.Block; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Database</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link madcow.magic.database.core.Database#getBlocks <em>Blocks</em>}</li> * <li>{@link madcow.magic.database.core.Database#getCardTotal <em>Card Total</em>}</li> * </ul> * </p> * * @see madcow.magic.database.core.DatabasePackage#getDatabase() * @model * @generated */ public interface Database extends MagicDBElement { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2001-2011 Mad Cow Entertainment and Corporation\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0 \r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html \r\n\r\nContributors: �bel Heged�s - initial API and implementation"; /** * Returns the value of the '<em><b>Blocks</b></em>' containment reference list. * The list contents are of type {@link madcow.magic.database.set.Block}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Blocks</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Blocks</em>' containment reference list. * @see madcow.magic.database.core.DatabasePackage#getDatabase_Blocks() * @model containment="true" * @generated */ EList<Block> getBlocks(); /** * Returns the value of the '<em><b>Card Total</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Card Total</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Card Total</em>' attribute. * @see #setCardTotal(int) * @see madcow.magic.database.core.DatabasePackage#getDatabase_CardTotal() * @model derived="true" * @generated */ int getCardTotal(); /** * Sets the value of the '{@link madcow.magic.database.core.Database#getCardTotal <em>Card Total</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Card Total</em>' attribute. * @see #getCardTotal() * @generated */ void setCardTotal(int value); } // Database