Additional indirections to command line programs. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/2163c49b Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/2163c49b Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/2163c49b
Branch: refs/heads/master Commit: 2163c49b56da7a4ae1f1089842649f2c3fb635a5 Parents: ef24554 Author: Andy Seaborne <[email protected]> Authored: Tue Apr 19 14:04:46 2016 +0100 Committer: Andy Seaborne <[email protected]> Committed: Tue Apr 19 14:04:46 2016 +0100 ---------------------------------------------------------------------- jena-cmds/src/main/java/jena/qparse.java | 25 +++++++++++++++++++++++++ jena-cmds/src/main/java/jena/riot.java | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/2163c49b/jena-cmds/src/main/java/jena/qparse.java ---------------------------------------------------------------------- diff --git a/jena-cmds/src/main/java/jena/qparse.java b/jena-cmds/src/main/java/jena/qparse.java new file mode 100644 index 0000000..fc03dd3 --- /dev/null +++ b/jena-cmds/src/main/java/jena/qparse.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package jena; + +public class qparse { + public static void main(String... args) { + arq.qparse.main(args); + } +} http://git-wip-us.apache.org/repos/asf/jena/blob/2163c49b/jena-cmds/src/main/java/jena/riot.java ---------------------------------------------------------------------- diff --git a/jena-cmds/src/main/java/jena/riot.java b/jena-cmds/src/main/java/jena/riot.java new file mode 100644 index 0000000..01c3e2f --- /dev/null +++ b/jena-cmds/src/main/java/jena/riot.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package jena; + +public class riot { + public static void main(String... args) { + riotcmd.riot.main(args); + } +}
