source: gs3-extensions/mat/trunk/src/org/greenstone/mat/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: 330 bytes
Line 
1package org.greenstone.mat;
2
3public class CostModel {
4
5 double cost = 0;
6 String target ="";
7
8 public String getString(){
9 return target;
10 }
11
12 public double getCost(){
13 return cost;
14 }
15
16 public void setCost(double arg){
17 cost = arg;
18 }
19
20 public void setString(String arg){
21 target = arg;
22 }
23}
Note: See TracBrowser for help on using the repository browser.