Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5c70f4c042bc384c6d14ba83d9f9a75f424e7dda (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*******************************************************************************
 * Copyright (c) 2001, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.explorer.platform.perspective;

import java.util.Enumeration;
import java.util.Hashtable;

public class FormToolProperties implements FormToolPropertiesInterface
{
  private Hashtable propertyTable_;
  private Hashtable errantValues_;

  public FormToolProperties()
  {
    propertyTable_ = new Hashtable();
    errantValues_ = new Hashtable();
  }

  public final Object getProperty(Object key)
  {
    return propertyTable_.get(key);
  }

  public final void setProperty(Object key,Object value)
  {
    propertyTable_.put(key,value);
  }

  public final void removeProperty(Object key)
  {
    propertyTable_.remove(key);
  }

  public final void clearPropertyTable()
  {
    propertyTable_.clear();
  }

  public final void updatePropertyTable(Hashtable newPropertyTable)
  {
    Enumeration e = newPropertyTable.keys();
    while (e.hasMoreElements())
    {
      String key = (String)e.nextElement();
      propertyTable_.put(key,newPropertyTable.get(key));
    }
  }

  public final void setPropertyTable(Hashtable newPropertyTable)
  {
    clearPropertyTable();
    updatePropertyTable(newPropertyTable);
  }

  public final void flagError(Object inputKey)
  {
    if (isInputValid(inputKey))
      errantValues_.put(inputKey,Boolean.TRUE);
  }

  public final void flagRowError(Object inputKey,int rowNumber)
  {
    flagRowError(inputKey,String.valueOf(rowNumber));
  }
  
  public final void flagRowError(Object inputKey,Object rowId)
  {
    Object errorObject = errantValues_.get(inputKey);
    Hashtable rowHash;
    if (errorObject instanceof Hashtable)
      rowHash = (Hashtable)errorObject;
    else
      rowHash = new Hashtable();
    rowHash.put(rowId,Boolean.TRUE);
    errantValues_.put(inputKey,rowHash);
  }
  
  public final void clearErrors()
  {
    errantValues_.clear();
  }

  public final boolean isInputValid(Object inputKey)
  {
    return (errantValues_.get(inputKey) == null);
  }

  public final boolean isRowInputValid(Object inputKey,int rowNumber)
  {
    return isRowInputValid(inputKey,String.valueOf(rowNumber));
  }
  
  public final boolean isRowInputValid(Object inputKey,Object rowId)
  {
    Hashtable rowHash = (Hashtable)errantValues_.get(inputKey);
    if (rowHash == null)
      return true;
    return (rowHash.get(rowId) == null);
  }
}

Back to the top