/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.fib.model; import java.lang.reflect.Type; import javax.swing.SwingConstants; public class FIBLabel extends FIBWidget { public static enum Parameters implements FIBModelAttribute { label, align; } public static enum Align { left { @Override public int getAlign() { return SwingConstants.LEFT; } }, right { @Override public int getAlign() { return SwingConstants.RIGHT; } }, center { @Override public int getAlign() { return SwingConstants.CENTER; } }; public abstract int getAlign(); } private String label; private Align align = Align.left; public FIBLabel() { super(); } public FIBLabel(String label) { this(); this.label = label; } @Override protected String getBaseName() { return "Label"; } @Override public String getIdentifier() { return getLabel(); } @Override public Type getDefaultDataClass() { return String.class; } public String getLabel() { return label; } public void setLabel(String label) { FIBAttributeNotification<String> notification = requireChange(Parameters.label, label); if (notification != null) { this.label = label; hasChanged(notification); } } public Align getAlign() { return align; } public void setAlign(Align align) { FIBAttributeNotification<Align> notification = requireChange(Parameters.align, align); if (notification != null) { this.align = align; hasChanged(notification); } } }