GrxUIonEclipse-project-0.9.8
src
com
generalrobotix
ui
view
graph
SEString.java
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
3
* All rights reserved. This program is made available under the terms of the
4
* Eclipse Public License v1.0 which accompanies this distribution, and is
5
* available at http://www.eclipse.org/legal/epl-v10.html
6
* Contributors:
7
* General Robotix Inc.
8
* National Institute of Advanced Industrial Science and Technology (AIST)
9
*/
17
package
com.generalrobotix.ui.view.graph;
18
19
public
class
SEString
implements
StringExchangeable
{
20
String value_;
21
27
public
SEString
(String
value
) {
28
value_ =
value
;
29
};
30
36
public
String
toString
() {
37
return
value_;
38
}
39
46
public
Object
fromString
(String str) {
47
value_ = str;
48
return
(Object)value_;
49
}
50
56
public
void
setValue
(Object
value
) {
57
value_ = (String)value;
58
}
59
65
public
void
setValue
(String str) {
66
value_ = str;
67
}
68
74
public
Object
getValue
() {
75
return
(Object)value_;
76
}
77
};
com.generalrobotix.ui.view.graph.SEString.getValue
Object getValue()
Definition:
SEString.java:74
com.generalrobotix.ui.view.graph.SEString.fromString
Object fromString(String str)
Definition:
SEString.java:46
com.generalrobotix.ui.view.graph.SEString.toString
String toString()
Definition:
SEString.java:36
com.generalrobotix.ui.view.graph.SEString.setValue
void setValue(String str)
Definition:
SEString.java:65
value
png_voidp int value
Definition:
png.h:2113
com.generalrobotix.ui.view.graph.SEString.SEString
SEString(String value)
Definition:
SEString.java:27
com.generalrobotix.ui.view.graph.SEString.setValue
void setValue(Object value)
Definition:
SEString.java:56
com.generalrobotix.ui.view.graph.SEString
Definition:
SEString.java:19
com.generalrobotix.ui.view.graph.StringExchangeable
Definition:
StringExchangeable.java:19
openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Thu Sep 8 2022 02:24:05