- Timestamp:
- 09/05/09 03:11:50 (3 years ago)
- Location:
- Hermes/trunk
- Files:
-
- 3 modified
-
build.xml (modified) (1 diff)
-
src/com/kh/hermes/MessagingService.java (modified) (2 diffs)
-
src/com/kh/hermes/Session.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Hermes/trunk/build.xml
r4014 r4015 59 59 </javac> 60 60 <copy todir="${build}/WEB-INF/classes"> 61 <fileset dir="${src}" />61 <fileset dir="${src}" excludes="**/*.html"/> 62 62 </copy> 63 63 <copy todir="${build}/WEB-INF/lib"> -
Hermes/trunk/src/com/kh/hermes/MessagingService.java
r1969 r4015 61 61 * Returns the {@link Queue}. 62 62 * 63 * @return 63 * @return queue 64 64 */ 65 65 public static Queue getQueue(String name) { … … 85 85 * Returns the {@link Topic}. 86 86 * 87 * @return 87 * @return topic 88 88 */ 89 89 public static Topic getTopic(String name) { -
Hermes/trunk/src/com/kh/hermes/Session.java
r1969 r4015 41 41 * Creates a <code>Message</code> object. 42 42 * 43 * @return 43 * @return a new message 44 44 */ 45 45 Message createMessage(); … … 50 50 * Gets the name of this object. 51 51 * 52 * @return 52 * @return name 53 53 */ 54 54 String getName();
