Header.java
上传用户:hengxinggs
上传日期:2008-01-15
资源大小:212k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Java

  1. /*
  2.  * Copyright (C) 2005 David Orme <djo@coconut-palm-software.com>
  3.  * 
  4.  * All rights reserved. This program and the accompanying materials
  5.  * are made available under the terms of the Eclipse Public License v1.0
  6.  * which accompanies this distribution, and is available at
  7.  * http://www.eclipse.org/legal/epl-v10.html
  8.  *
  9.  * Contributors:
  10.  *     David Orme     - Initial API and implementation
  11.  */
  12. package org.eclipse.jface.examples.databinding.compositetable.test;
  13. import org.eclipse.swt.SWT;
  14. import org.eclipse.swt.widgets.Composite;
  15. import org.eclipse.swt.widgets.Label;
  16. public class Header extends Composite {
  17. private Label label = null;
  18. private Label label1 = null;
  19. private Label label2 = null;
  20. private Label label3 = null;
  21. public Header(Composite parent, int style) {
  22. super(parent, style);
  23. initialize();
  24. }
  25. /**
  26.  * This method initializes this
  27.  * 
  28.  */
  29. private void initialize() {
  30.         this.setSize(new org.eclipse.swt.graphics.Point(313,54));
  31.         label = new Label(this, SWT.NONE);
  32.         label.setBounds(new org.eclipse.swt.graphics.Rectangle(23,18,53,18));
  33.         label.setText("Name");
  34.         label1 = new Label(this, SWT.NONE);
  35.         label1.setBounds(new org.eclipse.swt.graphics.Rectangle(98,18,79,17));
  36.         label1.setText("Address");
  37.         label2 = new Label(this, SWT.NONE);
  38.         label2.setBounds(new org.eclipse.swt.graphics.Rectangle(199,18,35,17));
  39.         label2.setText("City");
  40.         label3 = new Label(this, SWT.NONE);
  41.         label3.setBounds(new org.eclipse.swt.graphics.Rectangle(256,17,35,17));
  42.         label3.setText("State");
  43. }
  44. }  //  @jve:decl-index=0:visual-constraint="11,16"