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

📄 datafileelement.java

📁 web版的SVN客户端
💻 JAVA
字号:
package org.polarion.svnwebclient.data.model;

public class DataFileElement extends DataRepositoryElement {
    protected boolean binary;
    protected byte[] content;
    
    public boolean isDirectory() {
        return false;
    }
    
    public boolean isBinary() {
        return this.binary;
    }
    
    public void setBinary(boolean binary) {
        this.binary = binary;
    }
    
    public byte[] getContent() {
        return this.content;
    }
    
    public void setContent(byte[] content) {
        this.content = content;
    }
}

⌨️ 快捷键说明

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