source: java/Framclipse/com.framsticks.framclipse/src/com/framsticks/framclipse/script/context/Context.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: 292 bytes
Line 
1package com.framsticks.framclipse.script.context;
2
3import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
4
5public class Context {
6
7        @XStreamAsAttribute
8        private String name;
9
10        public String getName() {
11                return name;
12        }
13
14        public void setName(String name) {
15                this.name = name;
16        }
17
18}
Note: See TracBrowser for help on using the repository browser.