Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5e3e54d0 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- added getValue() primitive

parent ecdeb341
No related branches found
No related tags found
No related merge requests found
/*
* $Id$
*
* Copyright (C) INRIA Rhne-Alpes, 2004-2005
* Copyright (C) INRIA Rhne-Alpes, 2004-2005, 2008
* Copyright (C) University of Montral, 2004
*
* This program is free software; you can redistribute it and/or
......@@ -25,6 +25,7 @@ package fr.inrialpes.exmo.align.impl;
// import java classes
import java.util.Hashtable;
import java.util.Enumeration;
import java.util.Collection;
import java.io.PrintStream;
import java.io.File;
......@@ -76,6 +77,10 @@ public class BasicParameters implements Parameters {
return parameters.keys();
}
public Collection getValues(){
return parameters.values();
}
public void write(){
System.out.println("<?xml version='1.0' ?>");
System.out.println("<Parameters>");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment