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

📄 phpcommandbuilder.java

📁 CakePHP的Eclipse插件
💻 JAVA
字号:
package org.xicabin.radcake.core.util;

import java.io.File;

public class PHPCommandBuilder {
	protected StringBuilder command;
	public static final String EOL = System.getProperty("line.separator");
	public static final String DS = File.separator;
	public static final String PHP_BEGIN = "<?php" + EOL;
	public static final String PHP_END = EOL + "?>";

	public PHPCommandBuilder() {
		this.command = new StringBuilder();
		this.command.append(PHP_BEGIN);
	}

	public void append(String str) {
		this.command.append(str);
	}

	public void appendLine(String str) {
		this.command.append(str + EOL);
	}

	@Override
	public String toString() {
		this.command.append(PHP_END);
		return this.command.toString();
	}
}

⌨️ 快捷键说明

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