Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
866 mhunt 1
package com.erggroup.buildtool.abt;
2
 
3
public class Platform
4
{
5
    // static fields
6
    // public
7
    // protected
8
    // private
9
 
10
    // fields
11
    // public
12
    // protected
13
    // private
14
    private String gbe_machtype;
15
    public Platform()
16
    {
17
    }
18
 
19
    public void setGbe_Machtype(String machtype)
20
    {
21
        gbe_machtype = machtype;
22
    }
23
    public String getGbe_Machtype()
24
    {
25
        return gbe_machtype; 
26
    }
27
}