Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import org.xml.sax.Attributes;

public class Main {
    public static final int getIntAttribute(final Attributes pAttributes, final String pAttributeName,
            final int pDefaultValue) {
        final String value = pAttributes.getValue("", pAttributeName);
        return (value != null) ? Integer.parseInt(value) : pDefaultValue;
    }
}