⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 concretetoken.java

📁 Python Development Environment (Python IDE plugin for Eclipse). Features editor, code completion, re
💻 JAVA
字号:
/*
 * Created on Nov 22, 2004
 *
 * @author Fabio Zadrozny
 */
package org.python.pydev.editor.codecompletion.revisited;

/**
 * A concrete token is created for representing modules.
 * 
 * E.g.: if there is a module called foo.bar.config, a concrete token for with rep: config 
 * and parentPackage foo.bar.config is created.
 * 
 * @author Fabio Zadrozny
 */
public class ConcreteToken extends AbstractToken{

    private static final long serialVersionUID = 1L;

    /**
     * @param rep The representation for this token
     * @param doc the document that contains the token
     * @param parentPackage the parent package for the token (in this case, the module itself)
     * @param type the type for this token
     */
    public ConcreteToken(String rep, String doc, String args, String parentPackage, int type) {
        super(rep, doc, args, parentPackage, type);
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -