source: java/FramclipsePlugin/src/main/java/com/framsticks/framclipse/internal/parser/ASTSingleLinePropertyValue.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 782 bytes
Line 
1/* Generated By:JJTree: Do not edit this line. ASTSingleLinePropertyValue.java Version 4.1 */
2/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=false,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
3package com.framsticks.framclipse.internal.parser;
4
5public class ASTSingleLinePropertyValue extends SimpleNode {
6        protected String value = "[undefined]";
7
8        public String getValue() {
9                return value;
10        }
11
12        public void setValue(String value) {
13                this.value = value;
14        }
15        public ASTSingleLinePropertyValue(int id) {
16                super(id);
17        }
18
19        public ASTSingleLinePropertyValue(FramclipseNonScriptParser p, int id) {
20                super(p, id);
21        }
22
23}
24/*
25 * JavaCC - OriginalChecksum=40fd018df40c33d67aefe6b6ad939e94 (do not edit this
26 * line)
27 */
Note: See TracBrowser for help on using the repository browser.