/******************************************************************************* * Copyright (c) 2012 Association for Decentralized Information Management in * Industry THTH ry. * 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: * VTT Technical Research Centre of Finland - initial API and implementation *******************************************************************************/ package org.simantics.modeling.template2d.ui.function; import org.simantics.databoard.util.Bean; import org.simantics.db.Resource; public class FlagInfo extends Bean { public Resource flag = null; public String flagTableName = ""; public Integer flagTableRowIndex = -1; // public Resource getFlag() { // return flag; // } // public void setFlag(Resource flag) { // this.flag = flag; // } // public String getFlagTableName() { // return slotTableName; // } // public void setFlagTableName(String slotTableName) { // this.slotTableName = slotTableName; // } // public Integer getFlagTableRowIndex() { // return slotTableRowIndex; // } // public void setFlagTableRowIndex(Integer slotTableRowIndex) { // this.slotTableRowIndex = slotTableRowIndex; // } }