Java tutorial
/** * This program 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 2 of the License, or (at your option) * any later version. * * This program 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 this program; if not, write to the Free Software Foundation, Inc., 59 * Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package ca.sfu.federation.viewer.propertysheet; import ca.sfu.federation.Application; import ca.sfu.federation.ApplicationContext; import ca.sfu.federation.model.Scenario; import com.developer.rose.BeanProxy; import java.util.Observable; import java.util.Observer; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.JLabel; import javax.swing.JTextField; import org.apache.commons.lang.exception.ExceptionUtils; /** * @author Davis Marques */ public class ScenarioPropertySheet extends javax.swing.JPanel implements Observer { private static final Logger logger = Logger.getLogger(ScenarioPropertySheet.class.getName()); private javax.swing.JTextField jtfCanonicalName; private javax.swing.JTextField jtfClass; private javax.swing.JTextField jtfDescription; private javax.swing.JTextField jtfName; private javax.swing.JTextField jtfParentContext; private javax.swing.JLabel lblCanonicalName; private javax.swing.JLabel lblClass; private javax.swing.JLabel lblDescription; private javax.swing.JLabel lblINamedObject; private javax.swing.JLabel lblName; private javax.swing.JLabel lblParentContext; private Scenario target; //-------------------------------------------------------------------------- /** * ParametricModelSheet constructor. */ public ScenarioPropertySheet() { lblINamedObject = new JLabel(); lblName = new JLabel(); lblDescription = new JLabel(); lblCanonicalName = new JLabel(); lblClass = new JLabel(); lblParentContext = new JLabel(); jtfClass = new JTextField(); jtfName = new JTextField(); jtfCanonicalName = new JTextField(); jtfDescription = new JTextField(); jtfParentContext = new JTextField(); lblINamedObject.setFont(new java.awt.Font("Tahoma", 0, 14)); lblINamedObject.setText("jLabel1"); lblName.setText("Name"); lblDescription.setText("Description"); lblCanonicalName.setText("Canonical Name"); lblClass.setText("Class"); lblParentContext.setText("Parent Context"); jtfClass.setEditable(false); jtfCanonicalName.setEditable(false); jtfParentContext.setEditable(false); org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(layout .createSequentialGroup().addContainerGap().add( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(lblINamedObject) .add(layout .createSequentialGroup().add(layout .createParallelGroup( org.jdesktop.layout.GroupLayout.LEADING) .add(lblCanonicalName).add(lblClass).add(lblName) .add(lblDescription).add(lblParentContext)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout .createParallelGroup( org.jdesktop.layout.GroupLayout.LEADING) .add(jtfParentContext, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 221, Short.MAX_VALUE) .add(jtfName, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 221, Short.MAX_VALUE) .add(jtfClass, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 221, Short.MAX_VALUE) .add(jtfDescription, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 221, Short.MAX_VALUE) .add(org.jdesktop.layout.GroupLayout.TRAILING, layout .createSequentialGroup() .addPreferredGap( org.jdesktop.layout.LayoutStyle.RELATED) .add(jtfCanonicalName, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 221, Short.MAX_VALUE))))) .addContainerGap())); layout.setVerticalGroup(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(layout.createSequentialGroup().addContainerGap().add(lblINamedObject) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jtfClass, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE) .add(lblClass)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jtfName, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE) .add(lblName)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(lblCanonicalName) .add(jtfCanonicalName, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(lblDescription).add(jtfDescription, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(lblParentContext).add(jtfParentContext, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .addContainerGap(142, Short.MAX_VALUE))); // disable non editable fields this.jtfCanonicalName.setEditable(false); this.jtfClass.setEditable(false); this.jtfParentContext.setEditable(false); // set field values this.setValues(); // add action listeners jtfName.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jtfNameActionListener(evt); } }); jtfDescription.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jtfDescriptionActionListener(evt); } }); } //-------------------------------------------------------------------------- private void jtfDescriptionActionListener(java.awt.event.ActionEvent evt) { String command = evt.getActionCommand(); logger.log(Level.INFO, "ScenarioSheet jtfDescriptionInputMethodTextChanged fired {0}", command); try { BeanProxy proxy = new BeanProxy(this.target); proxy.set("description", evt.getActionCommand()); } catch (Exception ex) { String stack = ExceptionUtils.getFullStackTrace(ex); logger.log(Level.WARNING, "{0}", stack); } } private void jtfNameActionListener(java.awt.event.ActionEvent evt) { String command = evt.getActionCommand(); logger.log(Level.INFO, "ScenarioSheet jtfDescriptionInputMethodTextChanged fired {0}", command); try { BeanProxy proxy = new BeanProxy(this.target); proxy.set("name", evt.getActionCommand()); } catch (Exception ex) { String stack = ExceptionUtils.getFullStackTrace(ex); logger.log(Level.WARNING, "{0}", stack); } } private void setValues() { // target this.target = (Scenario) Application.getContext().getViewState(ApplicationContext.VIEWER_SELECTION); // listen for changes on the target if (this.target instanceof Observable) { Observable o = (Observable) this.target; o.addObserver(this); } // set field values this.lblINamedObject.setText(this.target.getName()); this.jtfClass.setText(this.target.getClass().toString()); this.jtfName.setText(this.target.getName()); this.jtfCanonicalName.setText(this.target.getCanonicalName()); this.jtfParentContext.setText(this.target.getContext().getName()); } /** * Update event. * @param o Observable object. * @param arg Update argument. */ public void update(Observable o, Object arg) { if (arg instanceof Integer) { Integer eventId = (Integer) arg; logger.log(Level.INFO, "ScenarioSheet received event notification id {0}", eventId); switch (eventId) { case ApplicationContext.EVENT_PROPERTY_CHANGE: logger.log(Level.INFO, "ScenarioSheet fired property change event"); this.setValues(); break; } } } }