Changeset 24 for references
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- references
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
references/pom.xml
r23 r24 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>references</artifactId> 8 <version>1.5. 2</version> <!-- must equal ${geniusweb.version} -->8 <version>1.5.3</version> <!-- must equal ${geniusweb.version} --> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <jackson-2-version>2.9.10</jackson-2-version> 19 <geniusweb.version>1.5. 2</geniusweb.version>19 <geniusweb.version>1.5.3</geniusweb.version> 20 20 </properties> 21 21 … … 152 152 <groupId>org.apache.maven.plugins</groupId> 153 153 <artifactId>maven-javadoc-plugin</artifactId> 154 <version> 2.10.1</version>154 <version>3.2.0</version> 155 155 <executions> 156 156 <execution> … … 159 159 <goal>jar</goal> 160 160 </goals> 161 <configuration>162 <additionalparam>${javadoc.opts}</additionalparam>163 <additionalparam>-Xdoclint:none</additionalparam>164 </configuration>165 161 </execution> 166 162 </executions> -
references/src/main/java/geniusweb/connection/DefaultConnection.java
r9 r24 6 6 * Default implementation of connection. Connection implementors only need to 7 7 * implement the send (which moves the data sent into the connection to the 8 * other side) and they can call {@link DefaultListenable#notifyChange(Object)}9 * to inform the users of the connection that something came in from the other10 * side.8 * other side) and they can call 9 * {@link DefaultListenable#notifyListeners(Object)} to inform the users of the 10 * connection that something came in from the other side. 11 11 * 12 * @param <INTYPE>the datatype of objects received from the other side13 * @param <OUTTYPE>the datatype of objects sent to the other side.12 * @param INTYPE the datatype of objects received from the other side 13 * @param OUTTYPE the datatype of objects sent to the other side. 14 14 */ 15 15 public abstract class DefaultConnection<INTYPE, OUTTYPE> extends
Note:
See TracChangeset
for help on using the changeset viewer.