source: java/Framclipse/com.framsticks.framclipse/src/com/framsticks/framclipse/script/context/Properties.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: 431 bytes
Line 
1package com.framsticks.framclipse.script.context;
2
3import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
4
5public class Properties {
6
7        @XStreamAsAttribute
8        private String from;
9
10        @XStreamAsAttribute
11        private String to;
12
13        public String getFrom() {
14                return from;
15        }
16
17        public void setFrom(String from) {
18                this.from = from;
19        }
20
21        public String getTo() {
22                return to;
23        }
24
25        public void setTo(String to) {
26                this.to = to;
27        }
28
29}
Note: See TracBrowser for help on using the repository browser.