// $Id: StructureStylesEvent.java,v 1.2 2006/08/16 04:36:12 Sasha Buzko Exp $ // // Copyright (c) 2000-2002 San Diego Supercomputer Center (SDSC), // a facility operated jointly by the University of California, // San Diego (UCSD) and General Atomics, San Diego, California, USA. // // Users and possessors of this source code are hereby granted a // nonexclusive, royalty-free copyright and design patent license to // use this code in individual software. License is not granted for // commercial resale, in whole or in part, without prior written // permission from SDSC. This source is provided "AS IS" without express // or implied warranty of any kind. // // For further information, please see: http://mbt.sdsc.edu // // History: // $Log: StructureStylesEvent.java,v $ // Revision 1.2 2006/08/16 04:36:12 Sasha Buzko // *** empty log message *** // // Revision 1.1 2006/05/20 17:02:03 Sasha Buzko // Updated version // // Revision 1.1 2006/04/30 20:13:58 Sasha Buzko // New version of the app // // Revision 1.1 2006/04/15 19:42:21 Sasha Buzko // Initial commit // // Revision 1.5 2006/03/17 02:17:09 Administrator // *** empty log message *** // // Revision 1.4 2005/11/17 05:53:04 Administrator // *** empty log message *** // // Revision 1.3 2005/11/15 06:14:39 Administrator // *** empty log message *** // // Revision 1.2 2005/11/13 23:44:33 Administrator // *** empty log message *** // // Revision 1.1 2005/11/13 04:35:12 Administrator // *** empty log message *** // // Revision 1.1 2003/04/23 23:02:06 moreland // First version. // // Revision 1.1 2002/11/14 18:33:20 moreland // First implementation/check-in. // // Revision 1.1.1.1 2002/07/16 18:00:19 moreland // Imported sources // package edu.sdsc.mbt.viewables; import edu.sdsc.mbt.*; /** * An event generated when changes are made to a StructureStyles object. * This event class is used when viewable style attributes are set. *

* @see edu.sdsc.mbt.viewables.StructureStyles *

* @author John L. Moreland */ public class StructureStylesEvent { /** * The StructureStyles in which the style changed. */ public StructureStyles structureStyles; /** * The StructureComponent for which style changed. */ public StructureComponent structureComponent; /** * The main attribute that was changed in the StructureStyles object * (see StructureStyles for a list of valid states). For example: * selection, or visibility. */ public int attribute; /** * The specific property that was changed in the Style object * (see each Style sub-classes for a list of valid states). For example: * color, radius, label, etc. */ public int property; /** * The accelerator flag used for visibility and selections that * apply to the entire structure (see StructureStyles for a list of * valid states). */ public int flag; public boolean batch; public boolean aux;//auxiliary flag }