Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String makeIntentActionName(Class<?> cls, String actionName) {
return String.format("%s.action.%s", cls.getName(), actionName.toUpperCase());
}
}