use of com.sldeditor.create.sld.NewRasterSLD in project sldeditor by robward-scisys.
the class NewSLDFactory method populateAvailableList.
/**
* Populate available list of SLDs.
*
* @return the list
*/
private static List<NewSLDInterface> populateAvailableList() {
List<NewSLDInterface> list = new ArrayList<NewSLDInterface>();
list.add(new NewPointSLD());
list.add(new NewLineSLD());
list.add(new NewPolygonSLD());
list.add(new NewRasterSLD());
return list;
}
Aggregations