Skip to content

Commit

Permalink
preparation for release 1.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenEwald committed Apr 15, 2018
1 parent 8e09c10 commit 50a4743
Show file tree
Hide file tree
Showing 3 changed files with 170 additions and 98 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.xmlbeam</groupId>
<artifactId>xmlprojector</artifactId>
<version>1.4.14</version>
<version>1.4.15</version>
<name>XMLBeam Data Projector</name>
<description>The coolest XML library for Java around. Define typesafe views (projections) to xml. Use XPath to read and write XML. Bind XML to Java collections. Requires at least Java6, supports Java8 features and has no further runtime dependencies.</description>
<inceptionYear>2012-12-21</inceptionYear>
Expand Down
8 changes: 7 additions & 1 deletion src/main/java/org/xmlbeam/XBProjector.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ public <T extends Externalizer> T getExternalizerAs(final Class<? extends T> cla
* {@inheritDoc}
*/
@Override
@Deprecated
public TransformerFactory createTransformerFactory() {
return XBProjector.this.xMLFactoriesConfig.createTransformerFactory();
}
Expand All @@ -231,6 +232,7 @@ public TransformerFactory createTransformerFactory() {
*/

@Override
@Deprecated
public DocumentBuilderFactory createDocumentBuilderFactory() {
return XBProjector.this.xMLFactoriesConfig.createDocumentBuilderFactory();
}
Expand All @@ -239,6 +241,7 @@ public DocumentBuilderFactory createDocumentBuilderFactory() {
* {@inheritDoc}
*/
@Override
@Deprecated
public XPathFactory createXPathFactory() {
return XBProjector.this.xMLFactoriesConfig.createXPathFactory();
}
Expand All @@ -247,6 +250,7 @@ public XPathFactory createXPathFactory() {
* {@inheritDoc}
*/
@Override
@Deprecated
public Transformer createTransformer(final Document... document) {
return XBProjector.this.xMLFactoriesConfig.createTransformer(document);
}
Expand All @@ -255,6 +259,7 @@ public Transformer createTransformer(final Document... document) {
* {@inheritDoc}
*/
@Override
@Deprecated
public DocumentBuilder createDocumentBuilder() {
return XBProjector.this.xMLFactoriesConfig.createDocumentBuilder();
}
Expand All @@ -263,6 +268,7 @@ public DocumentBuilder createDocumentBuilder() {
* {@inheritDoc}
*/
@Override
@Deprecated
public XPath createXPath(final Document... document) {
return XBProjector.this.xMLFactoriesConfig.createXPath(document);
}
Expand Down Expand Up @@ -295,10 +301,10 @@ public ConfigBuilder setStringRenderer(final StringRenderer renderer) {
}

@Override
@Deprecated
public Map<String, String> getUserDefinedNamespaceMapping() {
return xMLFactoriesConfig.getUserDefinedNamespaceMapping();
}

}

/**
Expand Down
Loading

0 comments on commit 50a4743

Please sign in to comment.