/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License, version 2 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
*
* Copyright 2006 - 2016 Pentaho Corporation. All rights reserved.
*/
package org.pentaho.aggdes.ui.xulstubs;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.pentaho.ui.xul.XulComponent;
import org.pentaho.ui.xul.XulDomContainer;
import org.pentaho.ui.xul.XulDomException;
import org.pentaho.ui.xul.XulException;
import org.pentaho.ui.xul.binding.Binding;
import org.pentaho.ui.xul.dom.Attribute;
import org.pentaho.ui.xul.dom.Document;
import org.pentaho.ui.xul.dom.Element;
import org.pentaho.ui.xul.dom.Namespace;
public class DocumentStub implements Document {
static Map<String, XulComponent> elementIdMap = new HashMap<String, XulComponent>();
public List<Binding> bindings = new ArrayList<Binding>();
public void addBinding(Binding bind) {
bindings.add(bind);
}
public void addInitializedBinding(Binding b) {
bindings.add(b);
}
public void addOverlay(String src) throws XulException {}
public XulComponent createElement(String elementName) throws XulException {
if (elementName.equals("messagebox")) {
return new XulMessageBoxStub();
} else if (elementName.equals("filedialog")) {
return new XulFileDialogStub();
} else {
return null;
}
}
public XulComponent getRootElement() { return null; }
public boolean isRegistered(String elementName) { return false; }
public void loadFragment(String id, String src) throws XulException {}
public void removeOverlay(String src) throws XulException {}
public void setXulDomContainer(XulDomContainer container) {}
public void addChild(Element element) {}
public void addChildAt(Element element, int idx) {}
public String getAttributeValue(String attributeName) { return null; }
public List<Attribute> getAttributes() { return null; }
public List<XulComponent> getChildNodes() { return null; }
public Document getDocument() { return null; }
public XulComponent getElementById(String id) {
return elementIdMap.get(id);
}
public XulComponent getElementByXPath(String path) { return null; }
public Object getElementObject() { return null; }
public List<XulComponent> getElementsByTagName(String tagName) { return null; }
public XulComponent getFirstChild() { return null; }
public String getName() { return null; }
public Namespace getNamespace() { return null; }
public XulComponent getParent() { return null; }
public String getText() { return null; }
public void removeChild(Element element) {}
public void replaceChild(XulComponent oldElement, XulComponent newElement) throws XulDomException {}
public void setAttribute(Attribute attribute) {}
public void setAttribute(String name, String value) {}
public void setAttributes(List<Attribute> attribute) {}
public void setNamespace(String prefix, String uri) {}
public void invokeLater(Runnable runnable) {
runnable.run();
}
public void loadPerspective(String id) {
}
}