~ubuntu-branches/ubuntu/quantal/simple-xml/quantal

« back to all changes in this revision

Viewing changes to src/org/simpleframework/xml/core/MethodType.java

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru, Fabian Köster
  • Date: 2010-03-05 19:44:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100305194434-d9mwhyioc9npo9it
Tags: 2.3.2-1
* Standards-Version updated to version 3.8.4

[ Fabian Köster ]
* New upstream release
* Correct license information in debian/pom.xml
* Exclude generated Javadoc from orig-tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
   /**
47
47
    * This is used to represent a method that acts as a setter.
48
48
    */
49
 
   SET(3);   
 
49
   SET(3),  
 
50
   
 
51
   /**
 
52
    * This is used to represent a a normal method to be ignored.
 
53
    */
 
54
   NONE(0);
50
55
   
51
56
   /**
52
57
    * This is the length of the prefix the method type uses.