Skip to main content
summaryrefslogtreecommitdiffstats
blob: 805c970f9a83412c613817f72ce226e5b5b341ca (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
/*******************************************************************************
 * Copyright (c) 2004, 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
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060410   135441 joan@ca.ibm.com - Joan Haggarty
 * 20060420   135912 joan@ca.ibm.com - Joan Haggarty
 *******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.swt.graphics.Point;
import org.eclipse.wst.command.internal.env.ui.widgets.SimpleWidgetDataContributor;


public abstract class AbstractObjectSelectionWidget extends SimpleWidgetDataContributor implements IObjectSelectionWidget
{
  public void setInitialSelection(IStructuredSelection initialSelection)
  {
    // subclass should override this method
  }

  public IStructuredSelection getObjectSelection()
  {
    // subclass should override this method
    return new StructuredSelection();
  }

  public IStatus validateSelection(IStructuredSelection objectSelection)
  {
    //  subclass should override this method
    return Status.OK_STATUS;
  }

  public IProject getProject()
  {
    //  subclass should override this method
    return null;
  }
  
   public  String getObjectSelectionDisplayableString()
   {
	    //  subclass should override this method
	  return "";
   }
   
   public Point getWidgetSize()
   {
      // subclasses should override with an appropriate default dialog size for this widget	  
 	  return null;  
   }
   
   public boolean validate(String s) {
    // subclass should override this method
	return true;
    }  
  }

Back to the top