NIHVIVO-3628 Create a new package for custom list view classes.

This commit is contained in:
j2blake 2012-02-22 20:50:47 +00:00
parent 0b18650ac4
commit 6a4228f099
4 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,6 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
package edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual;
package edu.cornell.mannlib.vitro.webapp.web.templatemodels.customlistview;
import java.io.IOException;
import java.io.Reader;
@ -71,7 +71,7 @@ public class CustomListViewConfigFile {
// Might be empty but will not be null.
private final String postprocessorName;
CustomListViewConfigFile(Reader reader) throws InvalidConfigFileException {
public CustomListViewConfigFile(Reader reader) throws InvalidConfigFileException {
Document doc = parseDocument(reader);
selectQueryElement = parseSelectQuery(doc);
constructQueries = parseConstructQueries(doc);

View file

@ -32,6 +32,7 @@ import edu.cornell.mannlib.vitro.webapp.controller.freemarker.UrlBuilder.Route;
import edu.cornell.mannlib.vitro.webapp.dao.ObjectPropertyStatementDao;
import edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary;
import edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory;
import edu.cornell.mannlib.vitro.webapp.web.templatemodels.customlistview.CustomListViewConfigFile;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;