From 3493cfbfe6e815454ce102a32152b088b89c5308 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 20 Jan 2015 10:51:36 +0000
Subject: [PATCH] Removed the fields that SubCommandArgumentParser duplicates from superclass ArgumentParser.
---
opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java
index a569cd9..8f59c5a 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java
@@ -1237,6 +1237,15 @@
}
/**
+ * Sets the raw set of arguments.
+ *
+ * @param rawArguments the raw set of arguments to set
+ */
+ void setRawArguments(String[] rawArguments) {
+ this.rawArguments = rawArguments;
+ }
+
+ /**
* Sets the provided argument as one which will automatically trigger the
* output of usage information if it is provided on the command line and no
* further argument validation will be performed. Note that the caller will
--
Gitblit v1.10.0