source: java/Framclipse/com.framsticks.framclipse/src/com/framsticks/framclipse/script/context/Script.java @ 437

Last change on this file since 437 was 437, checked in by Mateusz Poszwa, 9 years ago

Added Framclipse as developed by Bartosz Kukawka and Tomek Maciejewski in 2010

  • Property svn:eol-style set to native
File size: 312 bytes
Line 
1package com.framsticks.framclipse.script.context;
2
3import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
4
5public class Script {
6
7        @XStreamAsAttribute
8        private String context;
9
10        public String getContext() {
11                return context;
12        }
13
14        public void setContext(String context) {
15                this.context = context;
16        }
17
18}
Note: See TracBrowser for help on using the repository browser.