source: other-projects/trunk/greenstone3-extension/mat/Greenstone3Project/src/org/greenstone3/ms/costModel.java@ 17156

Last change on this file since 17156 was 17156, checked in by cc108, 16 years ago

Adding the project Metadata Quality for Digital Libraries into the repository

File size: 302 bytes
Line 
1package org.greenstone3.ms;
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.