code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package com.legendshop.core.exception;
public class ClientException extends RuntimeException {
private static final long serialVersionUID = 2848225058035251507L;
private String _$1;
public ClientException() {
}
public ClientException(String paramString1, String paramString2) {... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class LimitationException extends BaseException {
private static final long serialVersionUID = -4882836842833494358L;
public LimitationException(String paramString1, String paramString2) {
su... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class BusinessException extends BaseException {
private static final long serialVersionUID = -1072822638462729389L;
public BusinessException(String paramString1, String paramString2) {
super(... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class ApplicationException extends BaseException {
private static final long serialVersionUID = -8958497176157909350L;
public ApplicationException(String paramString1, String paramString2) {
... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class ConflictException extends BaseException {
private static final long serialVersionUID = 1134208068875011459L;
public ConflictException(String paramString1, String paramString2) {
super(p... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class NotFoundException extends BaseException {
private static final long serialVersionUID = 1107139638880131340L;
public NotFoundException(String paramString1, String paramString2) {
super(p... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class InvalidFormatException extends BaseException {
private static final long serialVersionUID = 1474030746589727246L;
public InvalidFormatException(String paramString1, String paramString2) {
... | Java |
package com.legendshop.core.exception;
public abstract interface EntityCodes {
public static final String SYSTEM = "00";
public static final String SHOP = "10";
public static final String USER = "11";
public static final String PROD = "12";
public static final String NEWS = "13"... | Java |
package com.legendshop.core.exception;
import com.legendshop.model.UserMessages;
public abstract class BaseException extends RuntimeException {
private static final long serialVersionUID = 2848225058035251507L;
protected String errorCode;
protected UserMessages userMessages;
publ... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class PermissionException extends BaseException {
private static final long serialVersionUID = 1474030746589727246L;
public PermissionException(String paramString1, String paramString2) {
sup... | Java |
package com.legendshop.core.exception;
public abstract interface ErrorCodes {
public static final String NORMAL_STAUTS = "200";
public static final String SYSTEM_ERROR = "999";
public static final String BUSINESS_ERROR = "998";
public static final String CONFLICT_ERROR = "9... | Java |
package com.legendshop.core.exception;
import java.io.PrintStream;
import java.io.PrintWriter;
public class JCFException extends Exception {
private static final long serialVersionUID = -7425631664947561196L;
private Throwable _$2 = null;
private String _$1;
... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class InternalException extends BaseException {
private static final long serialVersionUID = 1134208068875011459L;
public InternalException(String paramString1, String paramString2) {
super(p... | Java |
package com.legendshop.core.exception;
import com.legendshop.core.helper.ResourceBundleHelper;
public class AuthorizationException extends BaseException {
private static final long serialVersionUID = 3853365722199544447L;
public AuthorizationException(String paramString1, String paramString2) {
... | Java |
package com.legendshop.core.exception;
import java.io.PrintStream;
import java.io.PrintWriter;
public class GoOnException extends Exception {
private static final long serialVersionUID = -6853904826035231555L;
private Throwable _$2 = null;
private String _$1;
... | Java |
package com.legendshop.core.photo;
import java.awt.image.BufferedImage;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import javax.imageio.ImageIO... | Java |
package com.legendshop.core.photo;
import java.io.File;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.legendshop.core.help... | Java |
package com.legendshop.core.photo;
import java.io.IOException;
import java.util.Enumeration;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
im... | Java |
package com.legendshop.core.photo;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRes... | Java |
package com.legendshop.core;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.s... | Java |
package com.legendshop.core.base;
import com.legendshop.core.UserManager;
import com.legendshop.core.constant.FunctionEnum;
import com.legendshop.core.constant.PagePathCalculator;
import com.legendshop.core.constant.ParameterEnum;
import com.legendshop.core.dao.support.CriteriaQuery;
import com.legendshop.core.... | Java |
package com.legendshop.core.base;
public abstract interface Controller {
}
| Java |
package com.legendshop.core.base;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public abstract interface AdminController<E, K> extends Controller {
public abstract String query(HttpServletRequest paramHttpServletRequest,
HttpServletResponse paramHttpS... | Java |
package com.legendshop.core.dao.impl;
import com.legendshop.core.cache.CacheObjectImpl;
import com.legendshop.core.dao.BaseDao;
import com.legendshop.core.dao.support.CriteriaQuery;
import com.legendshop.core.dao.support.HqlQuery;
import com.legendshop.core.dao.support.PageSupport;
import com.legendshop.core.da... | Java |
package com.legendshop.core.dao.support;
import java.io.Serializable;
import java.util.ArrayList;
public class Page implements Serializable {
private static final long serialVersionUID = -5623840070668936608L;
private static int _$5 = 20;
private int _$4 ... | Java |
package com.legendshop.core.dao.support;
import com.legendshop.core.page.PagerUtil;
import java.io.Serializable;
import java.util.List;
import java.util.Locale;
public class PageSupport implements Serializable {
private static final long serialVersionUID = -7058040526668991342L;
private int ... | Java |
package com.legendshop.core.dao.support;
import com.legendshop.util.AppUtils;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.hibernate.type.Type;
public class SqlQuery implements Serializable {
private static fi... | Java |
package com.legendshop.core.dao.support;
import com.legendshop.util.AppUtils;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.type.Type;
public class HqlQuery implements Serializable {
private static final long serialVersionUID = 6728373478527870071L;
... | Java |
package com.legendshop.core.dao.support;
import com.legendshop.util.AppUtils;
import java.io.Serializable;
import org.hibernate.criterion.Criterion;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Order;
import org.hibernate.criterion.Restrictions;
public class SimpleQbc imple... | Java |
package com.legendshop.core.dao.support;
import java.util.ArrayList;
import org.hibernate.criterion.Criterion;
public class CriterionList extends ArrayList<Criterion> {
private static final long serialVersionUID = 8369292865546912044L;
public final Criterion getParas(int paramInt) {
return... | Java |
package com.legendshop.core.dao.support;
import com.legendshop.util.AppUtils;
import java.io.Serializable;
import org.hibernate.criterion.Criterion;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Order;
import org.hibernate.criterion.Restrictions;
public class CriteriaQuery i... | Java |
package com.legendshop.core.dao;
import com.legendshop.core.cache.CacheObject;
import com.legendshop.core.dao.support.CriteriaQuery;
import com.legendshop.core.dao.support.HqlQuery;
import com.legendshop.core.dao.support.PageSupport;
import com.legendshop.core.dao.support.SimpleQbc;
import com.legendshop.core.d... | Java |
package com.legendshop.core.helper;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
imp... | Java |
package com.legendshop.core.helper;
import com.legendshop.core.UserManager;
import com.legendshop.core.constant.FunctionEnum;
import com.legendshop.core.constant.ParameterEnum;
import com.legendshop.core.dao.support.CriteriaQuery;
import com.legendshop.core.dao.support.HqlQuery;
import com.legendshop.core.dao.s... | Java |
package com.legendshop.core.helper;
import com.legendshop.model.entity.SystemParameter;
public abstract interface PropertiesUpdater {
public abstract boolean isSupport(SystemParameter paramSystemParameter);
public abstract void update(SystemParameter paramSystemParameter);
}
| Java |
package com.legendshop.core.helper;
import javax.servlet.ServletContext;
public class RealPathUtil {
public static String getBigPicRealPath() {
return PropertiesUtil.getBigFilesAbsolutePath();
}
public static String getSystemRealPath(ServletContext paramServletContext) {
return ... | Java |
package com.legendshop.core.helper;
import javax.servlet.ServletContext;
import javax.sql.DataSource;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
import org.springframework.beans.factory.support.DefaultList... | Java |
package com.legendshop.core.helper;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import com.legendshop.core.constant.ConfigPropertiesEnum;
import com.legendshop.core.constant.ParameterEnum;
import com.legendshop.core.constant.ParameterTypeEnum;
import com.legendshop.model.entit... | Java |
package com.legendshop.core.helper;
import javax.servlet.http.HttpServletRequest;
public abstract interface Checker<T> {
public abstract boolean check(T paramT,
HttpServletRequest paramHttpServletRequest);
}
| Java |
package com.legendshop.core.helper;
import java.text.MessageFormat;
import java.util.Locale;
import java.util.ResourceBundle;
public class ResourceBundleHelper {
public static String getString(String paramString) {
return ResourceBundle.getBundle("i18n/ApplicationResources").getString(
... | Java |
package com.legendshop.core;
import com.legendshop.core.helper.PropertiesUtil;
public abstract interface AttributeKeys {
public static final String BACKUP_IMAGE = "backupImage";
public static final String SMALL_IMAGE = "smallImage";
public static final String DOWNLOAD_PATH... | Java |
package com.legendshop.core;
import javax.servlet.ServletContext;
public abstract interface StartupService {
public abstract void startup(ServletContext paramServletContext);
}
| Java |
package com.legendshop.core.security.model;
import com.legendshop.core.security.GrantedFunction;
import java.util.Collection;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.User;
public class UserDetail extends User {
private static final lo... | Java |
package com.legendshop.core.security;
import java.io.Serializable;
public abstract interface GrantedFunction extends Serializable {
public abstract String getFunction();
}
| Java |
package com.legendshop.core.security.service;
import com.legendshop.core.security.GrantedFunction;
import com.legendshop.model.entity.UserEntity;
import java.util.Collection;
import org.springframework.security.core.GrantedAuthority;
public abstract interface FunctionService {
public abstract Collection<G... | Java |
package com.legendshop.core.security;
import java.io.Serializable;
public class GrantedFunctionImpl implements GrantedFunction, Serializable {
private static final long serialVersionUID = -8641327494044297777L;
private String function;
public GrantedFunctionImpl(String function) {
... | Java |
package com.legendshop.core.security;
import java.util.Collection;
import java.util.Iterator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.access.AccessDecisionManager;
import org.springframework.security.access.AccessDeniedException;
import org.springframework... | Java |
package com.legendshop.core.security;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import org.springframework.util.Assert;
import org.springframew... | Java |
package com.legendshop.core.security;
import java.util.Map;
public abstract interface SecurityManager {
public abstract Map<String, String> getUrlAuthorities();
}
| Java |
package com.legendshop.core.security;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import org.slf4j.Logger;
import... | Java |
package com.legendshop.core.security;
import com.legendshop.core.AttributeKeys;
import com.legendshop.core.UserManager;
import com.legendshop.core.constant.FunctionEnum;
import com.legendshop.util.AppUtils;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.Http... | Java |
package com.legendshop.core;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.authenticatio... | Java |
package com.legendshop.model.group;
import com.legendshop.model.entity.Product;
import java.util.Date;
public class GroupProduct
{
private Long _$17;
private Product _$16;
private Long _$15;
private Long _$14;
private String _$13;
private String _$12;
private Integer _$11;
private Intege... | Java |
package com.legendshop.group.controller;
import com.legendshop.core.base.BaseController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframe... | Java |
package com.legendshop.group.controller;
import com.legendshop.core.base.BaseController;
import org.springframework.stereotype.Controller;
@Controller
public class GroupProductController extends BaseController
{
}
| Java |
package com.legendshop.group.controller;
import com.legendshop.core.base.BaseController;
import org.springframework.stereotype.Controller;
@Controller
public class GroupSortController extends BaseController
{
}
| Java |
package com.greysh.enter.model;
public class Admin {
private Integer adminId;
private String adminName;
private String adminPassword;
public Integer getAdminId() {
return adminId;
}
public void setAdminId(Integer adminId) {
this.adminId = adminId;
}
public String getAdminName() {
return ad... | Java |
package com.greysh.enter.service.impl;
import java.sql.SQLException;
import com.greysh.enter.dao.AdminDao;
import com.greysh.enter.model.Admin;
import com.greysh.enter.service.AdminService;
public class AdminServiceImpl implements AdminService {
private AdminDao adminDao;
//按用户名查询密码
public ... | Java |
package com.greysh.enter.service;
import java.sql.SQLException;
import com.greysh.enter.model.Admin;
public interface AdminService {
// 按ID查询成绩
void deleteScore(Integer id) throws SQLException;
// 按用户名查询密码
Admin findAdminByName(String name) throws SQLException;
}
| Java |
package com.greysh.enter.dao;
import java.sql.SQLException;
import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import com.greysh.enter.model.Admin;
public class AdminDao extends SqlMapClientDaoSupport {
// 删除考试
public void deleteTest(int id) throws SQLException {
getSq... | Java |
package com.greysh.enter.action;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.interceptor.SessionAware;
import com.greysh.enter.model.Admin;
import com.greysh.enter.service.AdminService;
import com.opensymphony.xwork2.ActionSupport;
public class AdminAction ex... | Java |
package com.greysh.members.model;
import java.util.Date;
public class Member {
// Fields
private Integer memberPid;
private String memberName;
private String memberUniversity;
private String memberMajor;
private String memberEmail;
private Integer memberState;
private String memberHobby;
pri... | Java |
package com.greysh.members.service;
import java.util.Date;
import java.util.List;
import com.greysh.members.model.Member;
/**
*
* 会员管理
*
*/
public interface MemberService {
/**
* 注册,添加会员
* @param member
*/
void saveMember(Member member);
/**
* 跟新会员信息
* @param member
*/
void... | Java |
package com.greysh.members.dao;
import java.util.ArrayList;
import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import com.greysh.members.model.Member;
public class MemberDao extends SqlMapClientDaoSupport {
@SuppressWarnings("unchecked")
public ArrayList<Member> findMember(Member me... | Java |
package com.greysh.members.action;
/**
*
* 后台管理员
*
*/
public class MemberAdminAction {
/**
*
* @return 管理员显示所有的会员列表
*/
public String showMembersList(){
return null;
}
/**
*
* @return 管理员查看单个会员
*/
public String showMember(){
return null;
}
/**
*
* @... | Java |
package com.greysh.members.action;
import com.greysh.members.model.Member;
import com.greysh.members.service.MemberService;
import com.opensymphony.xwork2.ActionSupport;
/**
*
*用户登陆
*
*/
public class MemberLoginAction extends ActionSupport{
/**
*
*/
private static final long serialVersio... | Java |
package com.greysh.members.action;
import com.greysh.members.model.Member;
import com.greysh.members.service.MemberService;
/**
*
* 前台用户
*
*/
public class MemberAction {
private MemberService memberService;
private Member member;
/**
*
* @return 跳转到注册页面
*/
public String beforeJoin()... | Java |
package com.greysh.members.action;
/**
*
* 用户搜索
*
*/
public class MemberSearchAction {
/**
*
* @return 跳转到搜索页面
*/
public String beforeSearch() {
return null;
}
/**
*
* @return 搜索处理页面
*/
public String Search() {
return null;
}
/**
*
* @return 搜索结果页面
*/... | Java |
package com.greysh.event.model;
import java.util.Date;
public class Event{
private Integer eventPid;
private String eventTitle;
private String eventContent;
private Date eventDate;
// Constructors
/** default constructor */
public Event() {
}
public Integer getEventPid() {
return ev... | Java |
package com.greysh.event.service;
import java.util.List;
import com.greysh.event.model.Event;
/**
*
* 校友会活动
*
*/
public interface EventService {
void saveEvent(Event event);
void updateEvent(Event event);
void deleteEventByPid(Integer pid);
Event findEventByPid(Integer pid);
Event ... | Java |
package com.greysh.event.action;
/**
*
*后台管理
*
*/
public class EventAdminAction {
/**
*
* @return 后台显示活动列表
*/
public String showEventList(){
return null;
}
/**
*
* @return 后台显示单个活动
*/
public String showEvent(){
return null;
}
/**
*
* @return 修改活动前的页面
*... | Java |
package com.greysh.event.action;
/**
*
* 前台活动信息
*
*/
public class EventAction{
/**
*
* @return 活动信息列表
*/
public String showEventsList(){
return null;
}
/**
*
* @return 显示单个活动信息
*/
public String showEvents(){
return null;
}
} | Java |
package com.greysh.jobs.model;
import java.util.Date;
public class Job {
private Integer jobId;
private String jobName;
private String jobDescription;
private Date jobDate;
public Job(){}
public Integer getJobId() {
return jobId;
}
public void setJobId(Integer jobId) {
this.jobId = ... | Java |
package com.greysh.jobs.service.impl;
public class JobServiceImpl{
} | Java |
package com.greysh.jobs.service;
import java.util.List;
import com.greysh.jobs.model.Job;
/**
*
*工作信息相关
*/
public interface JobsService {
/**
* 保存工作信息
* @param job
*/
void saveJob(Job job);
/**
* 跟新工作信息
* @param job
*/
void updateJob(Job job);
/**
* 根据主键删除工作信息
* @... | Java |
package com.greysh.jobs.dao;
public class JobDao{
} | Java |
package com.greysh.jobs.action;
/**
*
*后台管理
*
*/
public class JobAdminAction {
/**
*
* @return 后台显示工作信息列表
*/
public String showJobList(){
return null;
}
/**
*
* @return 后台显示单个工作信息
*/
public String showJob(){
return null;
}
/**
*
* @return 修改工作信息前的页面
*/... | Java |
package com.greysh.jobs.action;
/**
*
* 前台工作信息
*
*/
public class JobAction{
/**
*
* @return 工作信息列表
*/
public String showJobsList(){
return null;
}
/**
*
* @return 显示单个工作信息
*/
public String showJobs(){
return null;
}
} | Java |
package com.greysh.news.model;
import java.util.Date;
public class News {
// Fields
private Integer newsPid;
private String newsTitle;
private String newsContent;
private Date newsDate;
// Constructors
/** default constructor */
public News() {
}
public Integer getNewsPid() {
retu... | Java |
package com.greysh.news.service;
import java.util.List;
import com.greysh.news.model.News;
/**
*
* 新闻管理
*
*/
public interface NewsService {
/**
* 保存新闻
* @param news
*/
void saveNews(News news);
/**
* 跟新新闻
* @param news
*/
void updateNews(News news);
/**
* 根据主键删除新闻
... | Java |
package com.greysh.news.dao;
public class NewsDao{
} | Java |
package com.greysh.news.action;
/**
*
* 前台新闻
*
*/
public class NewsAction{
/**
*
* @return 新闻列表
*/
public String showNewsList(){
return null;
}
/**
*
* @return 显示单个新闻
*/
public String showNews(){
return null;
}
} | Java |
package com.greysh.news.action;
/**
*
*后台管理
*
*/
public class NewsAdminAction {
/**
*
* @return 后台显示新闻列表
*/
public String showNewsList(){
return null;
}
/**
*
* @return 后台显示单个新闻
*/
public String showNews(){
return null;
}
/**
*
* @return 修改新闻前的页面
*/
... | Java |
package com.greysh.donation.model;
import java.util.Date;
public class Donation{
// Fields
private Integer donationPid;
private String donationTitle;
private Date donationDate;
private String donationContent;
// Constructors
/** default constructor */
public Donation() {
}
public Integ... | Java |
package com.greysh.donation.service;
public interface DonationService {
}
| Java |
package com.greysh.donation.action;
/**
*
*后台管理
*
*/
public class DonationAdminAction {
/**
*
* @return 后台显示捐献列表
*/
public String showDonationList(){
return null;
}
/**
*
* @return 后台显示单个捐献
*/
public String showDonation(){
return null;
}
/**
*
* @return 修... | Java |
package com.greysh.donation.action;
/**
*
* 前台捐赠信息
*
*/
public class DonationAction{
/**
*
* @return 捐赠信息列表
*/
public String showDonationList(){
return null;
}
/**
*
* @return 显示单个捐赠信息
*/
public String showDonation(){
return null;
}
} | Java |
/*-
* Copyright (C) 2010 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2010 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2009 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
/*-
* Copyright (C) 2011 Peter Baldwin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This pro... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.