update copyright
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / make / CardLayoutSourceGenerator.java
blob6e11cc877d5e8b001a1e23b077a1c6654c138539
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.uiDesigner.make;
19 import com.intellij.uiDesigner.lw.LwComponent;
20 import com.intellij.uiDesigner.lw.LwContainer;
22 import java.awt.CardLayout;
24 /**
25 * @author yole
27 public class CardLayoutSourceGenerator extends LayoutSourceGenerator {
28 @Override
29 public void generateContainerLayout(final LwContainer component, final FormSourceCodeGenerator generator, final String variable) {
30 generateLayoutWithGaps(component, generator, variable, CardLayout.class);
33 public void generateComponentLayout(final LwComponent component,
34 final FormSourceCodeGenerator generator,
35 final String variable,
36 final String parentVariable) {
37 generator.startMethodCall(parentVariable, "add");
38 generator.pushVar(variable);
39 generator.push((String) component.getCustomLayoutConstraints());
40 generator.endMethod();