Skip to main content
summaryrefslogtreecommitdiffstats
blob: d2a5887aa55ac0543c890f743e4740f0e92bc054 (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
/*******************************************************************************
 * Copyright (c) 2001, 2006 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsdl.ui.internal.asd.design.layouts;

import java.util.HashMap;
import java.util.Iterator;

public class ColumnData
{
  HashMap map = new HashMap();
  
  class Entry
  {
    int width = 0;
    int weight = 1;
  }
  
  public void clearColumnWidths()
  {
    for (Iterator i = map.values().iterator(); i.hasNext();)
    {
      Entry entry = (Entry)i.next();
      entry.width = 0;
    }  
  }  
  
  private Entry lookupOrCreateColumnEntry(String identifier)
  {
    Entry entry = (Entry)map.get(identifier);
    if (entry == null)
    {
      entry = new Entry();
      map.put(identifier, entry);
    }  
   return entry; 
  }  
  
  void stretchColumnWidthIfNeeded(String identifier, int width)
  {
    Entry entry = lookupOrCreateColumnEntry(identifier);
    entry.width = Math.max(entry.width, width);
  }
  
  int getColumnWidth(String identifier)
  {
    Entry entry = (Entry)map.get(identifier);
    if (entry != null)
    {
      return entry.width;
    }  
    else
    {
      return 0;//hmm should we return -1 ?
    }  
  }
  
  int getColumnWeight(String identifier)
  {
    Entry entry = (Entry)map.get(identifier);
    if (entry != null)
    {
      return entry.weight;
    }  
    else
    {
      return 0;
    }  
  }
  
  public void setColumnWeight(String identifier, int weight)
  {
    Entry entry = lookupOrCreateColumnEntry(identifier);
    entry.weight = weight;
  }
}

Back to the top