Changeset 4015 for Hermes

Show
Ignore:
Timestamp:
09/05/09 03:11:50 (3 years ago)
Author:
mariusz
Message:
 
Location:
Hermes/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • Hermes/trunk/build.xml

    r4014 r4015  
    5959                </javac> 
    6060                <copy todir="${build}/WEB-INF/classes"> 
    61                         <fileset dir="${src}" /> 
     61                        <fileset dir="${src}" excludes="**/*.html"/> 
    6262                </copy> 
    6363                <copy todir="${build}/WEB-INF/lib"> 
  • Hermes/trunk/src/com/kh/hermes/MessagingService.java

    r1969 r4015  
    6161         * Returns the {@link Queue}. 
    6262         *  
    63          * @return 
     63         * @return queue 
    6464         */ 
    6565        public static Queue getQueue(String name) { 
     
    8585         * Returns the {@link Topic}. 
    8686         *  
    87          * @return 
     87         * @return topic 
    8888         */ 
    8989        public static Topic getTopic(String name) { 
  • Hermes/trunk/src/com/kh/hermes/Session.java

    r1969 r4015  
    4141         * Creates a <code>Message</code> object. 
    4242         *  
    43          * @return 
     43         * @return a new message 
    4444         */ 
    4545        Message createMessage(); 
     
    5050         * Gets the name of this object. 
    5151         *  
    52          * @return 
     52         * @return name 
    5353         */ 
    5454        String getName();