com.yahoo.platform.yui.compressor.JavaScriptToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yuicompressor-maven-plugin Show documentation
Show all versions of yuicompressor-maven-plugin Show documentation
To compress (Minify + Ofuscate) Javascript files and CSS files (using YUI Compressor from Julien Lecomte) and/or
to check Javascript files with jslint.
/*
* YUI Compressor
* Author: Julien Lecomte
* Copyright (c) 2007, Yahoo! Inc. All rights reserved.
* Code licensed under the BSD License:
* http://developer.yahoo.net/yui/license.txt
*/
package com.yahoo.platform.yui.compressor;
public class JavaScriptToken {
private int type;
private String value;
JavaScriptToken(int type, String value) {
this.type = type;
this.value = value;
}
int getType() {
return type;
}
String getValue() {
return value;
}
}