Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.lang.reflect.Method;

public class Main {
    public static String getFieldName(Method handlerMethod) {
        return handlerMethod.getName().substring(3, handlerMethod.getName().length() - 7);
    }
}