Cleaning.
This commit is contained in:
parent
9837a637d3
commit
ecf3786506
2 changed files with 6 additions and 17 deletions
|
@ -1,8 +1,8 @@
|
|||
package fr.devinsy.xid;
|
||||
|
||||
import java.io.StringWriter;
|
||||
import org.w3c.dom.Document;
|
||||
|
||||
import org.w3c.dom.*;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -11,19 +11,7 @@ public class DomPresenter extends Presenter
|
|||
{
|
||||
static final public char INDEX_SEPARATOR = '_';
|
||||
|
||||
static protected org.apache.log4j.Logger logger;
|
||||
static
|
||||
{
|
||||
logger = org.apache.log4j.Logger.getLogger (DomPresenter.class);
|
||||
}
|
||||
|
||||
static protected String staticRootPath;
|
||||
static
|
||||
{
|
||||
staticRootPath = null;
|
||||
}
|
||||
|
||||
|
||||
static protected org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger (DomPresenter.class);
|
||||
protected Document doc;
|
||||
|
||||
/*
|
||||
|
@ -48,7 +36,7 @@ public class DomPresenter extends Presenter
|
|||
/**
|
||||
*
|
||||
*/
|
||||
public Document getDom ()
|
||||
public Document dom ()
|
||||
{
|
||||
Document result;
|
||||
|
||||
|
@ -82,7 +70,7 @@ public class DomPresenter extends Presenter
|
|||
/*
|
||||
*
|
||||
*/
|
||||
public Object getSource ()
|
||||
public Object source ()
|
||||
{
|
||||
Object result;
|
||||
|
||||
|
@ -101,6 +89,7 @@ public class DomPresenter extends Presenter
|
|||
return (doXid (datas.getIdsDataById ()));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -56,7 +56,7 @@ public class FilePresenter extends DomPresenter
|
|||
/*
|
||||
*
|
||||
*/
|
||||
public String getSource ()
|
||||
public String source ()
|
||||
{
|
||||
String result;
|
||||
|
||||
|
|
Loading…
Reference in a new issue