- Timestamp:
- 09/06/12 11:32:45 (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/IGUIElementSpec.java
r655 r778 1 1 package de.ugoe.cs.quest.eventcore.guimodel; 2 3 import java.io.Serializable; 2 4 3 5 /** … … 9 11 * @author 2012, last modified by $Author: pharms$ 10 12 */ 11 public interface IGUIElementSpec {13 public interface IGUIElementSpec extends Serializable { 12 14 13 15 /** -
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElement.java
r743 r778 12 12 public class JFCGUIElement extends AbstractDefaultGUIElement { 13 13 14 /** */ 14 /** 15 * <p> 16 * Id for object serialization. 17 * </p> 18 */ 15 19 private static final long serialVersionUID = 1L; 16 20 -
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java
r743 r778 18 18 public class JFCGUIElementSpec implements IGUIElementSpec { 19 19 20 /** */ 21 private static final long serialVersionUID = 1L; 22 20 23 /** 21 24 * <p> -
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/guimodel/MFCGUIElementSpec.java
r715 r778 24 24 /** 25 25 * <p> 26 * Id for object serialization. 27 * </p> 28 */ 29 private static final long serialVersionUID = 1L; 30 31 /** 32 * <p> 26 33 * current name of the window 27 34 * </p>
Note: See TracChangeset
for help on using the changeset viewer.