我是elipse php的新手。在移植到日食之前,我已经使用梦想查看器进行我的php开发。所以,我需要知道当我将css文件拖放到html编辑器中时,它需要自动生成该css文件的import javax.xml.bind.JAXBException;
import javax.xml.bind.UnmarshallerHandler;
import org.xml.sax.Attributes;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
public class MyUnmarshallerHandlerWrapper implements UnmarshallerHandler {
private UnmarshallerHandler handle;
public MyUnmarshallerHandlerWrapper(UnmarshallerHandler handle) {
this.handle = handle;
}
@Override
public void characters(char[] arg0, int arg1, int arg2) throws SAXException {
handle.characters(arg0, arg1, arg2);
}
@Override
public void endDocument() throws SAXException {
handle.endDocument();
}
@Override
public void endElement(String arg0, String arg1, String arg2)
throws SAXException {
handle.endElement(arg0, arg1, arg2);
}
@Override
public void endPrefixMapping(String arg0) throws SAXException {
handle.endPrefixMapping(arg0);
}
@Override
public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
throws SAXException {
handle.ignorableWhitespace(arg0, arg1, arg2);
}
@Override
public void processingInstruction(String target, String data)
throws SAXException {
System.out.println("<?" + target + " " + data + "?>");
}
@Override
public void setDocumentLocator(Locator arg0) {
handle.setDocumentLocator(arg0);
}
@Override
public void skippedEntity(String arg0) throws SAXException {
handle.skippedEntity(arg0);
}
@Override
public void startDocument() throws SAXException {
handle.startDocument();
}
@Override
public void startElement(String arg0, String arg1, String arg2,
Attributes arg3) throws SAXException {
handle.startElement(arg0, arg1, arg2, arg3);
}
@Override
public void startPrefixMapping(String arg0, String arg1)
throws SAXException {
handle.startPrefixMapping(arg0, arg1);
}
@Override
public Object getResult() throws JAXBException, IllegalStateException {
return handle.getResult();
}
}
标记。它与梦想观众合作。但它不适用于eclipse。而且,当我需要在html标签内使用css类时,它需要输入css类名称。但是,我需要知道如何将所有css类配置为html标签的建议,例如在dream viewer和Netbeans的。
答案 0 :(得分:1)
文本DnD(拖放)功能(最初由2007年的错误11624引入)已经慢慢扩展到各种编辑器,如错误231294所报告的那样:
在EclipsePdt-2.2.0.v20100427中测试 已验证已修复:
仍然可以重现:
所以它仍在&#34;正在进行中&#34;。
相关的阻止问题是:
错误178104:[DND]需要重新访问dnd API以允许多个放弃目标
错误173405:使用IDragAndDropService(显示投票)
错误195655:拖放“删除所选文字”
答案 1 :(得分:0)
首先,Eclipse不是IDE,它是一个可以构建IDE(或任何其他应用程序)的平台。有几种不同语言的实现。最受欢迎的实际上是Eclipse的起源是Java IDE。还有一个用于PHP开发的插件/功能,称为PDT。
DreamViewer是一个专门用于Web开发的WYSIWYG编辑器(主要围绕HTML / CSS / Javascript),包括对不同Web脚本语言的支持。它有你提到的一些特殊属性,可以在你DnD时创建一个链接元素。
您可以做的是从PDT团队请求一个新功能,该功能为HTML文档中的删除文件创建一个链接元素。