org.eclipse.wb.internal.swt.model.layout.LayoutDataNameSupport.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.wb.internal.swt.model.layout.LayoutDataNameSupport.java

Source

/*******************************************************************************
 * Copyright (c) 2011 Google, Inc.
 * 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:
 *    Google, Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.wb.internal.swt.model.layout;

import com.google.common.collect.Maps;

import org.eclipse.wb.internal.swt.model.widgets.ControlInfo;
import org.eclipse.wb.internal.swt.preferences.IPreferenceConstants;

import org.eclipse.jface.preference.IPreferenceStore;

import java.util.Map;

/**
 * Support for managing name of {@link LayoutDataInfo}, so that it corresponds to the name of its
 * parent {@link ControlInfo}.
 * 
 * @author sablin_aa
 * @coverage swt.model.layout
 */
public final class LayoutDataNameSupport
        extends org.eclipse.wb.internal.core.model.layout.LayoutDataNameSupport<LayoutDataInfo> {
    public final static String[] TEMPLATES = new String[] { "${dataAcronym}_${controlName}",
            "${dataAcronym}${controlName-cap}", "${controlName}${dataClassName}", "${defaultName}" };

    ////////////////////////////////////////////////////////////////////////////
    //
    // Constructor
    //
    ////////////////////////////////////////////////////////////////////////////
    public LayoutDataNameSupport(LayoutDataInfo layoutData) {
        super(layoutData);
    }

    @Override
    protected String getTemplate() {
        IPreferenceStore preferences = m_childInfo.getDescription().getToolkit().getPreferences();
        String template = preferences.getString(IPreferenceConstants.P_LAYOUT_DATA_NAME_TEMPLATE);
        if (!isValidTemplate(TEMPLATES, template)) {
            template = getTemplateForDefault();
        }
        return template;
    }

    @Override
    protected Map<String, String> getValueMap() {
        // prepare variables
        Map<String, String> valueMap = Maps.newTreeMap();
        {
            valueMap.put("dataAcronym", getAcronym());
            valueMap.put("dataClassName", getClassName());
            valueMap.put("controlName", getParentName());
            valueMap.put("controlName-cap", getParentNameCap());
        }
        return valueMap;
    }
}