Package org.dyno.visual.swing.parser.adapters

Source Code of org.dyno.visual.swing.parser.adapters.CardLayoutParser

/************************************************************************************
* Copyright (c) 2008 William Chen.                                                 *
*                                                                                  *
* 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 *
*                                                                                  *
* Use is subject to the terms of Eclipse Public License v1.0.                      *
*                                                                                  *
* Contributors:                                                                    *
*     William Chen - initial API and implementation.                               *
************************************************************************************/
package org.dyno.visual.swing.parser.adapters;

import java.awt.CardLayout;
import java.awt.Component;

import org.dyno.visual.swing.plugin.spi.WidgetAdapter;
import org.eclipse.jdt.core.dom.rewrite.ImportRewrite;

public class CardLayoutParser extends LayoutParser {


  @Override
  protected String getNewInstanceCode(ImportRewrite imports) {
    CardLayout layout = (CardLayout) layoutAdapter.getContainer().getLayout();
    int hgap = layout.getHgap();
    int vgap = layout.getVgap();
    String strLayoutName= imports.addImport("java.awt.CardLayout");
    if (hgap != 0 || vgap != 0) {
      return "new "+strLayoutName+"(" + hgap + ", " + vgap + ")";
    } else {
      return "new "+strLayoutName+"()";
    }
  }

  @Override
  protected String getChildConstraints(Component child, ImportRewrite imports) {
    return "\""+WidgetAdapter.getWidgetAdapter(child).getID()+"\"";
  }

}
TOP

Related Classes of org.dyno.visual.swing.parser.adapters.CardLayoutParser

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.