private void enterMaterialBindParam(final Attributes attributes)
{
final DataFlowParams params = this.geometryInstance
.getMaterialBinding().getParams();
final DataFlowParam param = new DataFlowParam(
attributes.getValue("type"));
param.setName(attributes.getValue("name"));
param.setSemantic(attributes.getValue("semantic"));
param.setSid(attributes.getValue("sid"));
params.add(param);
enterElement(ParserMode.BIND_MATERIAL_PARAM);
}