Skip to content

Commit

Permalink
removed lifewise from compilation
Browse files Browse the repository at this point in the history
git-svn-id: http://www.molgenis.org/svn/molgenis/trunk@11769 42de9c89-b41c-0410-9fa9-f33e7b6bda7a
  • Loading branch information
mswertz committed Apr 28, 2012
1 parent 2e31f30 commit 4d1389e
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 67 deletions.
60 changes: 30 additions & 30 deletions src/org/molgenis/framework/db/lifewise/QueryResult.java
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package org.molgenis.framework.db.lifewise;

import javax.xml.bind.annotation.XmlRootElement;

/**
*
* @author jorislops
*/
@XmlRootElement
public class QueryResult {
private int count;

public QueryResult() {
}

public int getCount() {
return count;
}

public void setCount(int count) {
this.count = count;
}


}
///*
// * To change this template, choose Tools | Templates
// * and open the template in the editor.
// */
//
//package org.molgenis.framework.db.lifewise;
//
//import javax.xml.bind.annotation.XmlRootElement;
//
///**
// *
// * @author jorislops
// */
//@XmlRootElement
//public class QueryResult {
// private int count;
//
// public QueryResult() {
// }
//
// public int getCount() {
// return count;
// }
//
// public void setCount(int count) {
// this.count = count;
// }
//
//
//}
74 changes: 37 additions & 37 deletions src/org/molgenis/framework/db/lifewise/SendList.java
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package org.molgenis.framework.db.lifewise;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name="SendList")
@XmlAccessorType(XmlAccessType.FIELD)
public class SendList<E> {

@XmlElement(name="elem")
private List<E> list;

public SendList() {
list = new ArrayList<E>();
}

public SendList(List<E> list) {
this.list = list;
}

public List<E> getList() {
return list;
}

public void setList(List<E> list) {
this.list = list;
}
}
///*
// * To change this template, choose Tools | Templates
// * and open the template in the editor.
// */
//
//package org.molgenis.framework.db.lifewise;
//
//import java.util.ArrayList;
//import java.util.List;
//import javax.xml.bind.annotation.XmlAccessType;
//import javax.xml.bind.annotation.XmlAccessorType;
//import javax.xml.bind.annotation.XmlElement;
//import javax.xml.bind.annotation.XmlRootElement;
//
//@XmlRootElement(name="SendList")
//@XmlAccessorType(XmlAccessType.FIELD)
//public class SendList<E> {
//
// @XmlElement(name="elem")
// private List<E> list;
//
// public SendList() {
// list = new ArrayList<E>();
// }
//
// public SendList(List<E> list) {
// this.list = list;
// }
//
// public List<E> getList() {
// return list;
// }
//
// public void setList(List<E> list) {
// this.list = list;
// }
//}

0 comments on commit 4d1389e

Please sign in to comment.