source: other-projects/trunk/greenstone3-extension/mat/src/org/greenstone/gsdl3_extension/mat/CostModel.java@ 18093

Last change on this file since 18093 was 18093, checked in by cc108, 15 years ago

new Mat source code

File size: 346 bytes
Line 
1package org.greenstone.gsdl3_extension.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.