11 lines
188 B
Java
11 lines
188 B
Java
|
|
package com.baeldung.xmlhtml;
|
||
|
|
|
||
|
|
import com.baeldung.xmlhtml.helpers.XMLRunner;
|
||
|
|
|
||
|
|
public class Application {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
XMLRunner.doWork();
|
||
|
|
}
|
||
|
|
}
|