source: gs3-extensions/mat/trunk/src/org/greenstone/mat/servlet/costModel.java@ 21927

Last change on this file since 21927 was 21927, checked in by sjm84, 14 years ago

Renamed package to org.greenstone.mat from org.greenstone.gsdl3_extension.mat

File size: 310 bytes
Line 
1package org.greenstone.mat.servlet;
2
3public class costModel {
4 double cost = 0;
5 String target ="";
6
7 public String getString(){
8 return target;
9 }
10
11 public double getCost(){
12 return cost;
13 }
14
15 public void setCost(double arg){
16 cost = arg;
17 }
18
19 public void setString(String arg){
20 target = arg;
21 }
22
23}
Note: See TracBrowser for help on using the repository browser.