Skip to contentMethod: ClassModifierToken(Position)
      1: package de.fhdw.wtf.common.token.keywords;
2: 
3: import de.fhdw.wtf.common.token.Position;
4: 
5: /**
6:  * Represents class-modifiers as tokens in WTF.
7:  */
8: public abstract class ClassModifierToken extends KeywordToken {
9:         
10:         /**
11:          * generated.
12:          */
13:         private static final long serialVersionUID = 353384756017272908L;
14:         
15:         /**
16:          * Protected constructor for {@link ClassModifierToken}. Use create(...)-Factory instead!
17:          * 
18:          * @param position
19:          *            represents the start position of an {@link ClassModifierToken} in the original input.
20:          */
21:         protected ClassModifierToken(final Position position) {
22:                 super(position);
23:         }
24:         
25:         @Override
26:         public boolean isClassModifierToken() {
27:                 return true;
28:         }
29:         
30: }