Skip to main content
summaryrefslogtreecommitdiffstats
blob: 21bc3c1d3d536626dbab2ac723c5abb72bd7da25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*******************************************************************************
 * Copyright (c) 2012 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.console.admin.internal;

import java.util.Date;
import org.eclipse.osee.console.admin.ConsoleParameters;
import org.eclipse.osee.framework.jdk.core.type.PropertyStore;
import org.eclipse.osee.framework.jdk.core.util.Strings;

/**
 * @author Roberto E. Escobar
 */
public class ConsoleParametersImpl implements ConsoleParameters {

   private final String commandName;
   private final String rawString;
   private final PropertyStore store;

   public ConsoleParametersImpl(String commandName, String rawString, PropertyStore store) {
      this.commandName = commandName;
      this.rawString = rawString;
      this.store = store;
   }

   @Override
   public String getRawString() {
      return rawString;
   }

   @Override
   public String get(String key) {
      return store.get(key);
   }

   @Override
   public String[] getArray(String key) {
      return store.getArray(key);
   }

   @Override
   public boolean getBoolean(String key) {
      return store.getBoolean(key);
   }

   @Override
   public double getDouble(String key) throws NumberFormatException {
      return store.getDouble(key);
   }

   @Override
   public float getFloat(String key) throws NumberFormatException {
      return store.getFloat(key);
   }

   @Override
   public int getInt(String key) throws NumberFormatException {
      return store.getInt(key);
   }

   @Override
   public long getLong(String key) throws NumberFormatException {
      return store.getLong(key);
   }

   @Override
   public Date getDate(String key) throws IllegalArgumentException {
      long value = store.getLong(key);
      return new Date(value);
   }

   @Override
   public boolean exists(String key) {
      return Strings.isValid(store.get(key));
   }

   @Override
   public String getCommandName() {
      return commandName;
   }

}

Back to the top