72 lines
3.1 KiB
Java
72 lines
3.1 KiB
Java
/*
|
|
* Copyright (c) 2005,2007 Declarative Engineering LLC.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Declarative Engineering LLC
|
|
* verson 1 which accompanies this distribution, and is available at
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
|
*/
|
|
package com.foundation.view.swt.builder;
|
|
|
|
import com.common.util.*;
|
|
import com.foundation.view.builder.*;
|
|
import com.foundation.view.definition.*;
|
|
|
|
/*
|
|
* Builds the source for the stack viewer component.
|
|
*/
|
|
public class StackViewerBuilder extends ContainerBuilder {
|
|
protected static final String ASSOCIATION_VIEWS = "views";
|
|
protected static final String ASSOCIATION_VISIBLE_VIEW = "visible-view";
|
|
|
|
protected static final IHashMap styleMap = new LiteHashMap(ContainerBuilder.styleMap);
|
|
protected static final IHashMap linkMap = new LiteHashMap(ContainerBuilder.linkMap);
|
|
/**
|
|
* StackViewerBuilder constructor.
|
|
*/
|
|
public StackViewerBuilder() {
|
|
super();
|
|
}//StackViewerBuilder()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.view.builder.IBuilder#appendInitializationHead(com.foundation.view.builder.IViewSourceBuilder, StringBuffer, ComponentData)
|
|
*/
|
|
public void appendInitializationHead(IViewSourceBuilder viewBuilder, StringBuffer buffer, IComponentData data) {
|
|
String variableName = viewBuilder.getComponentAttributeName(data);
|
|
|
|
//Write out the constructor here only if this is not the primary component for the view.//
|
|
if(!viewBuilder.getPrimaryComponent().equals(data)) {
|
|
buffer.append("\t" + variableName + " = new " + getComponentClassName() + "(");
|
|
appendComponentConstructorParameters(viewBuilder, buffer, data, "parent");
|
|
buffer.append(");\r\n");
|
|
buffer.append("\t\r\n");
|
|
}//if//
|
|
|
|
appendInitializationBody(viewBuilder, buffer, data, variableName);
|
|
}//appendInitializationHead()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.view.builder.IBuilder#appendInitializationBody(com.foundation.view.builder.IViewSourceBuilder, java.lang.StringBuffer, com.foundation.view.definition.ComponentData, java.lang.String)
|
|
*/
|
|
public void appendInitializationBody(IViewSourceBuilder viewBuilder, StringBuffer buffer, IComponentData data, String variableName) {
|
|
appendAssociation(viewBuilder, buffer, data, ASSOCIATION_VIEWS, variableName, "setViewsAssociation", "ASSOCIATION_VIEWS", IViewSourceBuilder.ACCESS_TYPE_GET_ONLY);
|
|
appendAssociation(viewBuilder, buffer, data, ASSOCIATION_VISIBLE_VIEW, variableName, "setVisibleViewAssociation", "ASSOCIATION_VISIBLE_VIEW", IViewSourceBuilder.ACCESS_TYPE_GET_ONLY);
|
|
|
|
super.appendInitializationBody(viewBuilder, buffer, data, variableName);
|
|
}//appendInitializationBody()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.view.builder.IBuilder#getComponentClassName()
|
|
*/
|
|
public String getComponentClassName() {
|
|
return "com.foundation.view.swt.StackViewer";
|
|
}//getComponentClassName()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.view.swt.builder.AbstractBuilder#getStyleMap()
|
|
*/
|
|
public IHashMap getStyleMap() {
|
|
return styleMap;
|
|
}//getStyleMap()//
|
|
/* (non-Javadoc)
|
|
* @see com.foundation.view.swt.builder.AbstractBuilder#getLinkMap()
|
|
*/
|
|
public IHashMap getLinkMap() {
|
|
return linkMap;
|
|
}//getLinkMap()//
|
|
}//StackViewerBuilder// |