List of usage examples for com.google.common.css.compiler.ast CssDeclarationNode getPropertyName
public CssPropertyNode getPropertyName()
From source file:com.google.gwt.resources.gss.ImageSpriteCreator.java
@Override public boolean enterDeclaration(CssDeclarationNode declaration) { String propertyName = declaration.getPropertyName().getPropertyName(); if (SPRITE_PROPERTY_NAME.equals(propertyName)) { createSprite(declaration);/* w ww.ja v a 2 s . c o m*/ return true; } return super.enterDeclaration(declaration); }