Changeset 307168e
- Timestamp:
- Aug 16, 2010, 3:06:11 PM (8 years ago)
- Branches:
- master
- Children:
- 9310f22
- Parents:
- bda3a92
- Files:
-
- 11 added
- 5 deleted
- 106 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
core/pom.xml
rbda3a92 r307168e 10 10 <version>0.8-SNAPSHOT</version> 11 11 <packaging>jar</packaging> 12 <name>Core</name> 12 13 13 14 <build> … … 54 55 </plugins> 55 56 </build> 57 58 <reporting> 59 <plugins> 60 <plugin> 61 <groupId>org.apache.maven.plugins</groupId> 62 <artifactId>maven-changelog-plugin</artifactId> 63 </plugin> 64 <plugin> 65 <groupId>org.apache.maven.plugins</groupId> 66 <artifactId>maven-surefire-report-plugin</artifactId> 67 <configuration> 68 <aggregate>true</aggregate> 69 </configuration> 70 </plugin> 71 <plugin> 72 <groupId>org.apache.maven.plugins</groupId> 73 <artifactId>maven-javadoc-plugin</artifactId> 74 <configuration> 75 <show>public</show> 76 </configuration> 77 </plugin> 78 </plugins> 79 </reporting> 56 80 </project> -
core/src/main/java/de/erichseifert/warp/core/DataPresenter.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/DefaultVersionedComponent.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/ProgressListener.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/VersionedComponent.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/WARP.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/AbstractReplayStorage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/BufferedStorage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/MemoryStorage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/ReplayStorage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/SerializingStorage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/Settings.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 72 72 73 73 public boolean isParsingComplete() { 74 return prefs.getBoolean(KEY_PARSING_COMPLETE, false);74 return prefs.getBoolean(KEY_PARSING_COMPLETE, true); 75 75 } 76 76 -
core/src/main/java/de/erichseifert/warp/core/io/search/AbstractReplayIndexer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/search/DefaultReplayIndexer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 134 134 int position = 0; 135 135 for (Object iterableChild : (Iterable<?>) obj) { 136 Node node = parentNode. createNode("iterator", position);136 Node node = parentNode.addNode("iterator", position); 137 137 createIndices(iterableChild, node, 0); 138 138 position++; … … 146 146 147 147 // Add the currently indexed object to the parent hierarchy 148 Node node = parentNode. createNode(property.getPropertyGetterName(), listIndex);148 Node node = parentNode.addNode(property.getPropertyGetterName(), listIndex); 149 149 150 150 // Step into indexed children -
core/src/main/java/de/erichseifert/warp/core/io/search/IndexHierarchy.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 23 23 24 24 import java.io.Serializable; 25 import java.util.Collections; 25 26 import java.util.Iterator; 26 27 import java.util.LinkedList; 27 28 import java.util.List; 28 29 30 /** 31 * Class that represents a hierarchical indexing structure. 32 * An <code>IndexHierarchy</code> basically represents a tree. It consists 33 * of a list of {@link Node Nodes}, which in turn contain a list of child 34 * nodes. 35 */ 29 36 public class IndexHierarchy implements Iterable<IndexHierarchy.Node>, Serializable { 30 37 private final List<Node> rootNodes; 31 38 39 /** 40 * Class that represents a property, whose value or child nodes are indexed. 41 */ 32 42 public static class Node implements Iterable<Node>, Serializable { 33 43 private final List<Node> childNodes; … … 37 47 private Node parent; 38 48 49 /** 50 * Creates a <code>Node</code> object with the specified parent node, 51 * name of the getter method for the represented property and id. 52 * @param parent Parent node. 53 * @param propertyGetterName Name of the property's read method. 54 * @param id Id. 55 */ 39 56 private Node(Node parent, String propertyGetterName, long id) { 40 57 this.parent = parent; … … 44 61 } 45 62 63 /** 64 * Returns a list of child nodes. 65 * @return Child nodes. 66 */ 46 67 public List<Node> getChildNodes() { 47 return childNodes; 48 } 49 68 return Collections.unmodifiableList(childNodes); 69 } 70 71 /** 72 * Returns whether the node is a root node. 73 * Root nodes do not have a parent node. In other words, they 74 * represent the origins (= roots) of a tree. 75 * @return <code>true</code>, if the node is a root node, <code>false</code> otherwise. 76 */ 50 77 public boolean isRootNode() { 51 78 if (parent == null) { … … 55 82 } 56 83 84 /** 85 * Returns whether the node is a leaf node. 86 * Leaf nodes do not have child nodes. In other words, they 87 * represent the highest-depth parts (= leaves) of a tree. 88 * @return <code>true</code>, if the node has no children, <code>false</code> otherwise. 89 */ 57 90 public boolean isLeafNode() { 58 91 if (childNodes.isEmpty()) { … … 67 100 } 68 101 102 /** 103 * Returns the name of the get method of the property represented by this node. 104 * @return Name of the read method. 105 */ 69 106 public String getPropertyGetterName() { 70 107 return propertyGetterName; 71 108 } 72 109 110 /** 111 * Returns the id of this node. 112 * @return Id. 113 */ 73 114 public long getId() { 74 115 return id; 75 116 } 76 117 118 /** 119 * Returns the number of child nodes. 120 * @return Number of child nodes. 121 */ 77 122 public int size() { 78 123 int size = 0; … … 83 128 } 84 129 130 /** 131 * Removes the node with the specified name of the get method and id from the node's children. 132 * This method walks deeper into the tree and descends into the 133 * children's children and so on to check all of the node's 134 * elements. 135 * 136 * If a node is removed, all of its children are lost. 137 * @param propertyGetterName Name of the property's getter method. 138 * @param id Id. 139 * @return 140 */ 85 141 public Node remove(String propertyGetterName, long id) { 86 142 Node nodeRemoved = null; … … 99 155 } 100 156 101 public Node createNode(String propertyGetterName, long id) { 157 /** 158 * Adds a node with the specified property getter name and id to the list of child nodes. 159 * @param propertyGetterName Name of the property's getter method. 160 * @param id Id. 161 * @return Added node. 162 */ 163 public Node addNode(String propertyGetterName, long id) { 102 164 Node node = new Node(this, propertyGetterName, id); 103 165 childNodes.add(node); … … 105 167 } 106 168 169 /** 170 * Returns the root node that contains this node. 171 * @return Root node. 172 */ 107 173 public Node getRootNode() { 108 174 if (isRootNode()) { … … 112 178 } 113 179 180 /** 181 * Returns the path required to access this node from the root node. 182 * The root node is the first element of the path. 183 * @return Walk path through the tree. 184 */ 114 185 public List<Node> getPath() { 115 186 List<Node> path = new LinkedList<Node>(); … … 126 197 } 127 198 199 /** 200 * Returns the parent node of this node. 201 * @return Parent node. 202 */ 128 203 public Node getParent() { 129 204 return parent; … … 131 206 } 132 207 208 /** 209 * Creates an <code>IndexHierarchy</code> object. 210 */ 133 211 public IndexHierarchy() { 134 212 rootNodes = new LinkedList<Node>(); 135 213 } 136 214 215 /** 216 * Adds a node with the specified property getter name and id to the list of child nodes. 217 * @param propertyGetterName Name of the property's getter method. 218 * @param id Id. 219 * @return Added node. 220 */ 137 221 public Node createNode(String propertyGetterName, long id) { 138 222 Node node = new Node(null, propertyGetterName, id); … … 141 225 } 142 226 227 /** 228 * Removes the node with the specified name of the get method and id from the root nodes and their children. 229 * This method walks deeper into the tree and descends into the 230 * children's children and so on to check all of the hierarchy's 231 * elements. 232 * 233 * If a node is removed, all of its children are lost. 234 * @param propertyGetterName Name of the property's getter method. 235 * @param id Id. 236 * @return 237 */ 143 238 public Node remove(String propertyGetterName, long id) { 144 239 Node nodeRemoved = null; … … 162 257 } 163 258 259 /** 260 * Returns the number of nodes in this hierarchy. 261 * @return Number of nodes. 262 */ 164 263 public int size() { 165 264 int size = 0; -
core/src/main/java/de/erichseifert/warp/core/io/search/Indexable.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/search/IndexableChildren.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/search/IndexedProperty.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 80 80 } 81 81 82 /** 83 * Returns the method used to return this property's value. 84 * @return Getter method. 85 */ 82 86 public Method getReadMethod() { 83 87 if (readMethod == null) { -
core/src/main/java/de/erichseifert/warp/core/io/search/ReplayIndexer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 76 76 Set<String> getIndexNames(); 77 77 78 /** 79 * Returns the value of the property represented by the specified node. 80 * @param node Node. 81 * @return Property value. 82 */ 78 83 Object getChildObject(Node node); 79 84 85 /** 86 * Sets the storage to the specified value. 87 * @param storage Replay storage. 88 */ 80 89 void setStorage(ReplayStorage storage); 81 90 } -
core/src/main/java/de/erichseifert/warp/core/io/search/indices/AbstractIndex.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 37 37 */ 38 38 public abstract class AbstractIndex implements Index { 39 pr ivatefinal ReplayIndexer indexer;39 protected final ReplayIndexer indexer; 40 40 private final Map<Object, Set<Node>> indexedValues; 41 41 … … 48 48 this.indexer = indexer; 49 49 indexedValues = new HashMap<Object, Set<Node>>(); 50 }51 52 /**53 * Returns the property value of the last element in the hierarchy.54 * @param hierarchy Hierarchy of the indexed property.55 * @return Value of the property.56 */57 protected Object getValue(Node node) {58 Object indexedObject = indexer.getChildObject(node);59 return indexedObject;60 50 } 61 51 -
core/src/main/java/de/erichseifert/warp/core/io/search/indices/FieldIndex.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 56 56 return; 57 57 } 58 Object value = getValue(node);58 Object value = indexer.getChildObject(node); 59 59 put(value, node); 60 60 } … … 70 70 @Override 71 71 public boolean isIndexed(Node node) { 72 Object value = getValue(node);72 Object value = indexer.getChildObject(node); 73 73 return contains(value); 74 74 } -
core/src/main/java/de/erichseifert/warp/core/io/search/indices/FullTextIndex.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 127 127 return; 128 128 } 129 Object value = getValue(node);129 Object value = indexer.getChildObject(node); 130 130 List<String> normalizedValue = normalize(value.toString(), false); 131 131 for (String part : normalizedValue) { … … 148 148 } 149 149 150 Object value = getValue(node);150 Object value = indexer.getChildObject(node); 151 151 List<String> normalizedValue = normalize(value.toString(), false); 152 152 for (String part : normalizedValue) { -
core/src/main/java/de/erichseifert/warp/core/io/search/indices/Index.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/statistics/SC2Statistics.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/io/statistics/Statistics.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ActionFilter.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ActionFilterFactory.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ChatMessage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/DefaultChatMessage.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/DefaultGameAction.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/DefaultPlayer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/DefaultReplay.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/GameAction.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/GameActionFactory.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/Player.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/Replay.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ReplayChangeEvent.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ReplayDataChangeListener.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ReplayDescriptor.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ReplayParser.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/replay/ReplayParserFactory.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/ui/CLI.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/ui/WARPUI.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/util/FileUtil.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/util/GUIUtil.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/main/java/de/erichseifert/warp/core/util/ReplayUtil.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/CoreTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * … … 33 33 IoTests.class 34 34 }) 35 public class AllTests {35 public class CoreTests { 36 36 } -
core/src/test/java/de/erichseifert/warp/core/io/IoTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/io/search/SearchTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/io/search/indices/FullTextIndexTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/io/search/indices/IndicesTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/util/FileUtilTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/util/GUIUtilTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/util/ReplayUtilTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
core/src/test/java/de/erichseifert/warp/core/util/UtilTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/pom.xml
rbda3a92 r307168e 10 10 <version>0.8-SNAPSHOT</version> 11 11 <packaging>jar</packaging> 12 <name>Swing GUI</name> 12 13 13 14 <build> … … 55 56 </build> 56 57 58 <reporting> 59 <plugins> 60 <plugin> 61 <groupId>org.apache.maven.plugins</groupId> 62 <artifactId>maven-changelog-plugin</artifactId> 63 </plugin> 64 <plugin> 65 <groupId>org.apache.maven.plugins</groupId> 66 <artifactId>maven-surefire-report-plugin</artifactId> 67 <configuration> 68 <aggregate>true</aggregate> 69 </configuration> 70 </plugin> 71 <plugin> 72 <groupId>org.apache.maven.plugins</groupId> 73 <artifactId>maven-javadoc-plugin</artifactId> 74 <configuration> 75 <show>public</show> 76 </configuration> 77 </plugin> 78 </plugins> 79 </reporting> 80 57 81 <dependencies> 58 82 <dependency> -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/APMPlot.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/AboutWindow.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/ExpandableSplitPane.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/ItemRenderer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/ReplayCellEditor.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/ReplayParserGUI.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/VisibilityChangeEvent.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/VisibilityChangeListener.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/WARP.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/renderers/DefaultChatRenderer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/renderers/DefaultPlayerRenderer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/renderers/DefaultReplayRenderer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
gui.swing/src/main/java/de/erichseifert/warp/gui/swing/renderers/ReplayRendererFactory.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
pom.xml
rbda3a92 r307168e 5 5 <version>0.8-SNAPSHOT</version> 6 6 <packaging>pom</packaging> 7 <name>WARP</name> 7 8 <inceptionYear>2010</inceptionYear> 8 9 … … 15 16 <licenses> 16 17 <license> 17 18 18 <name>GNU General Public License (GPL)</name> 19 <url>http://www.gnu.org/licenses/gpl.txt</url> 19 20 </license> 20 21 </licenses> … … 35 36 <version>2.1</version> 36 37 <configuration> 37 38 38 <source>1.6</source> 39 <target>1.6</target> 39 40 </configuration> 40 41 </plugin> … … 45 46 <configuration> 46 47 <header>src/etc/header.txt</header> 47 <properties> 48 <year>${project.inceptionYear}-2010</year> 49 <owner>Michael Seifert</owner> 50 <email>michael.seifert[at]gmx.net</email> 51 </properties> 52 <excludes> 53 <exclude>LICENSE</exclude> 54 <exclude>.idea/**</exclude> 55 <exclude>bin/**</exclude> 56 <exclude>src/etc/**</exclude> 57 <exclude>src/main/resources/**</exclude> 58 <exclude>src/test/resources/**</exclude> 59 </excludes> 60 </configuration> 61 <executions> 62 <execution> 48 <mapping> 49 <java>SLASHSTAR_STYLE</java> 50 </mapping> 51 <properties> 52 <year>${project.inceptionYear}-2010</year> 53 <owner>Michael Seifert</owner> 54 <email>michael.seifert[at]gmx.net</email> 55 </properties> 56 <excludes> 57 <exclude>LICENSE</exclude> 58 <exclude>.idea/**</exclude> 59 <exclude>bin/**</exclude> 60 <exclude>src/etc/**</exclude> 61 <exclude>src/main/resources/**</exclude> 62 <exclude>src/test/resources/**</exclude> 63 </excludes> 64 </configuration> 65 <executions> 66 <execution> 63 67 <phase>test</phase> 64 68 <goals> … … 71 75 <groupId>org.apache.maven.plugins</groupId> 72 76 <artifactId>maven-javadoc-plugin</artifactId> 73 <version>2.6.1</version>74 77 <configuration> 75 78 <show>private</show> … … 96 99 <reporting> 97 100 <plugins> 98 <plugin> 99 <groupId>org.apache.maven.plugins</groupId> 100 <artifactId>maven-changelog-plugin</artifactId> 101 </plugin> 102 <plugin> 103 <groupId>org.apache.maven.plugins</groupId> 104 <artifactId>maven-surefire-report-plugin</artifactId> 105 <version>2.5</version> 106 </plugin> 107 <plugin> 108 <groupId>org.apache.maven.plugins</groupId> 109 <artifactId>maven-javadoc-plugin</artifactId> 110 <version>2.6.1</version> 111 <configuration> 112 <show>public</show> 113 </configuration> 114 <reportSets> 115 <reportSet> 116 <id>default</id> 117 <reports> 118 <report>javadoc</report> 119 </reports> 120 </reportSet> 121 </reportSets> 122 </plugin> 123 </plugins> 101 <plugin> 102 <groupId>org.apache.maven.plugins</groupId> 103 <artifactId>maven-changelog-plugin</artifactId> 104 </plugin> 105 <plugin> 106 <groupId>org.apache.maven.plugins</groupId> 107 <artifactId>maven-surefire-report-plugin</artifactId> 108 <configuration> 109 <aggregate>true</aggregate> 110 </configuration> 111 </plugin> 112 <plugin> 113 <groupId>org.apache.maven.plugins</groupId> 114 <artifactId>maven-javadoc-plugin</artifactId> 115 <configuration> 116 <show>public</show> 117 </configuration> 118 </plugin> 119 </plugins> 124 120 </reporting> 125 121 … … 142 138 <properties> 143 139 <package.binaryLibDir>bin</package.binaryLibDir> 140 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 144 141 </properties> 145 142 </project> -
sc2replay/pom.xml
rbda3a92 r307168e 10 10 <version>0.8-SNAPSHOT</version> 11 11 <packaging>jar</packaging> 12 <name>SC2Replay</name> 13 14 <reporting> 15 <plugins> 16 <plugin> 17 <groupId>org.apache.maven.plugins</groupId> 18 <artifactId>maven-changelog-plugin</artifactId> 19 </plugin> 20 <plugin> 21 <groupId>org.apache.maven.plugins</groupId> 22 <artifactId>maven-surefire-report-plugin</artifactId> 23 <configuration> 24 <aggregate>true</aggregate> 25 </configuration> 26 </plugin> 27 <plugin> 28 <groupId>org.apache.maven.plugins</groupId> 29 <artifactId>maven-javadoc-plugin</artifactId> 30 <configuration> 31 <show>public</show> 32 </configuration> 33 </plugin> 34 </plugins> 35 </reporting> 12 36 13 37 <dependencies> -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/ReplayMetaData.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ChatLog.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2Player.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2Replay.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayDetail.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayInitData.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayParser.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayParser_v1.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayParser_v2.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/SC2ReplayParser_v3.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/AbstractSC2Action.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/EnterGame.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/Group.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/LeaveGame.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/MoveScreen.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/Order.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SC2Action.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SC2ActionFactory.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SC2ActionFactory_v1v2.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SC2ActionFactory_v3.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SC2ActionFilter.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/Select.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/SendResources.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/StartGame.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/Sync.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/actions/Unknown.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/renderers/SC2ReplayRenderer.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/util/DataStruct.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/main/java/de/erichseifert/warp/sc2replay/util/SC2ReplayUtil.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/Sc2replayTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/actions/ActionTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/actions/GroupTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/actions/OrderTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/actions/SelectTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/util/SC2ReplayUtilTest.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 * -
sc2replay/src/test/java/de/erichseifert/warp/sc2replay/util/UtilTests.java
rbda3a92 r307168e 1 /* *1 /* 2 2 * WARP: WARP is a Replay Manager for Java(R) 3 3 *
Note: See TracChangeset
for help on using the changeset viewer.