FreeWRL/FreeX3D
3.0.0
Main Page
Related Pages
Data Structures
Files
File List
FWProfileInfo.java
1
package
sai;
2
import
org.web3d.x3d.sai.*;
3
4
public
class
FWProfileInfo
implements
ProfileInfo
{
5
private
String name;
6
private
String title;
7
private
ComponentInfo
[] components;
8
9
public
FWProfileInfo
(String n, String t,
ComponentInfo
[] c) {
10
name = n;
11
title = t;
12
components = c;
13
}
14
15
public
String getName() {
16
return
name;
17
}
18
19
public
String getTitle() {
20
return
title;
21
}
22
23
public
ComponentInfo
[] getComponents() {
24
return
components;
25
}
26
27
public
String toX3DString() {
28
return
"PROFILE "
+ name;
29
}
30
}
org.web3d.x3d.sai.ComponentInfo
Definition:
ComponentInfo.java:3
sai.FWProfileInfo
Definition:
FWProfileInfo.java:4
org.web3d.x3d.sai.ProfileInfo
Definition:
ProfileInfo.java:3
src
java
sai
FWProfileInfo.java
Generated on Thu Dec 14 2017 12:14:40 for FreeWRL/FreeX3D by
1.8.6