blob: e84fd0bb1eba81319bc4f1358a97c5084054f0b5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.click.eclipse.ui.editor.attrs;
import org.apache.click.eclipse.ClickPlugin;
import org.apache.click.eclipse.ClickUtils;
import org.eclipse.core.resources.IFile;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.forms.widgets.FormToolkit;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement;
/**
*
* @author Naoki Takezoe
* @since 2.1.0
*/
public class ServiceClassNameAttributeEditor implements IAttributeEditor {
private String superClassName;
public ServiceClassNameAttributeEditor(String superClassName){
this.superClassName = superClassName;
}
public Composite createForm(FormToolkit toolkit, Composite parent,
final IDOMElement element) {
Composite composite = toolkit.createComposite(parent);
composite.setLayout(ClickUtils.createGridLayout(2));
composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
IFile file = (IFile)ClickUtils.getResource(element.getStructuredDocument());
IJavaProject project = JavaCore.create(file.getProject());
final Text textClass = AttributeEditorUtils.createClassText(
project, toolkit, composite, element,
ClickPlugin.getString("editor.clickXML.pages.class"),
ClickPlugin.ATTR_CLASSNAME,
superClassName, null);
textClass.addModifyListener(new ModifyListener(){
public void modifyText(ModifyEvent e){
if(textClass.getText().equals("")){
element.removeAttribute(ClickPlugin.ATTR_CLASSNAME);
} else {
element.setAttribute(ClickPlugin.ATTR_CLASSNAME, textClass.getText());
}
}
});
return composite;
}
}