text stringlengths 10 2.72M |
|---|
package com.mitelcel.pack.bean.api.request;
import com.google.gson.Gson;
import com.google.gson.annotations.Expose;
import com.mitelcel.pack.bean.GenericBean;
/**
* Created by sudhanshu.thanedar on 10/26/2015.
*/
public abstract class BeanGenericApi extends GenericBean {
@Expose
protected long id;
@Exp... |
package com.zzlz13.zmusic.adapter;
import android.app.ActivityOptions;
import android.content.Context;
import android.content.Intent;
import android.support.v7.widget.RecyclerView;
import android.transition.ChangeBounds;
import android.transition.ChangeImageTransform;
import android.transition.TransitionSet;
import an... |
package com.prism.Product_Finder;
import java.util.HashMap;
/**
* Created by hadoop on 2017. 6. 15..
*/
public class Shop_AddressTable {
public static HashMap<String, String> Map_ShopAddress = new HashMap<String, String>();
}
|
package com.rastiehaiev.notebook.service;
/**
* @author Roman Rastiehaiev
* Created on 14.10.15.
*/
public interface ISystemService {
void justLog();
}
|
package app.commands;
import app.ConsoleManager;
import app.FileProperties;
import app.ZipFileManager;
import app.exceptions.PathIsNotFoundException;
import java.util.List;
public class ZipContentCommand extends ZipCommand {
@Override
public void execute() throws Exception {
try {
Console... |
package com.cs4125.bookingapp.services;
import com.cs4125.bookingapp.model.UserFactory;
import com.cs4125.bookingapp.model.entities.User;
import com.cs4125.bookingapp.services.interceptor.Target;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.c... |
package com.linkedbook.service;
import java.util.List;
import com.linkedbook.dto.chat.createChatRoom.CreateChatRoomInput;
import com.linkedbook.dto.chat.selectChatRoom.SelectChatRoomInput;
import com.linkedbook.dto.chat.selectChatRoom.SelectChatRoomOutput;
import com.linkedbook.entity.ChatRoomDB;
import com.linkedboo... |
package xyz.ashioto.ashioto;
import android.app.ProgressDialog;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.AppCompatRadioButton;
import android.support.v7.widget.AppCompatTextView;
import android.widget.RadioGrou... |
package it.usi.xframe.xas.bfimpl.sms.providers.vodafonepop;
public class VodafoneException extends Exception
{
public VodafoneException(String message) {
super(message);
}
public VodafoneException(String message, Throwable throwable) {
super(message, throwable);
}
}
|
package com.hs.example.javaproxy.intercept;
public class MyInterceptor implements Interceptor{
@Override
public boolean before() {
System.out.println("before sayHello......");
return false;
}
@Override
public void after() {
System.out.println("after sayHello......");
}
... |
package com.yunhe.billmanagement.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.yunhe.billmanagement.entity.FinanceClassify;
import com.yunhe.billmanagement.entity.FinanceOrder;
import com.yunhe.billmanagement.service.IFinanceClassifyService;
import com.yunhe.billmanagement.... |
package com.estrelladelsur.abstractclases;
public class Fixture {
private int ID_FIXTURE;
private int ID_EQUIPO_LOCAL;
private int ID_EQUIPO_VISITA;
private int ID_DIVISION;
private int ID_TORNEO;
private int ID_CANCHA;
private int ID_FECHA;
private int ID_ANIO;
private String DIA;
private String HORA;
pri... |
public class Caramel extends CoffeeDecorator {
private double cost = .75;
Caramel(Coffee specialCoffee){
super(specialCoffee);
}
public double makeCoffee() {
return specialCoffee.makeCoffee() + addCaramel();
}
private double addCaramel() {
System.out.println(" + pump o... |
package com.mylnz.byteland;
import com.mylnz.byteland.ifc.LandStructureUtilsIfc;
import java.util.*;
import java.util.stream.Collectors;
/**
* Created by mylnz on 14.11.2016.
* structure/restructure Utils
*/
public class LandStructureUtils implements LandStructureUtilsIfc {
public Map<Integer, Set<Integer>>... |
package com.originalandtest.tx.downloaddemo.download;
import android.content.Context;
import android.os.Build;
import android.util.Log;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import java.io.File;... |
package io.netty.example.jdkSerialize.nettyExample;
import io.netty.channel.ChannelHandlerAdapter;
import io.netty.channel.ChannelHandlerContext;
public class SubReqClientHandler extends ChannelHandlerAdapter {
public SubReqClientHandler() {
}
@Override
public void channelActive(ChannelHandlerContext ctx) throws ... |
package rainbowsort;
public class Solution {
}
|
package com.example.android.rangga_1202154227_studycase4;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
... |
/*
* created 11.08.2006
*
* Copyright 2009, ByteRefinery
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* $Id... |
package cn.e3mall.common.util;
import java.util.Random;
/**
*
* @author Dragon
*
*/
public class CommonUtils {
/**
* 生成ID
*/
public static long getId() {
//取当前时间的长整形值包含毫秒
long millis = System.currentTimeMillis();
//加上两位随机数
Random random = new Random();
int end2 = random.nextInt(99);
//如果不足两位前面补... |
package algorithm.swea.D5;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
/*
입력 BufferedReader, toCharArray()
BFS 큐
(악마들, 수연) < 같은 레벨에 악마먼저 넣고 수연
BFS는 해당 노드의 자식들을 다 꺼내는 방식이기 때문에 가지고있는... |
package LaunchBrowser;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.opera.OperaDriver;
import org.testng.annotations.*;
import io.github.bonigarcia.wdm.WebDriverManager;
public class LaunchOperaBrowser {
public static WebDriver opera_driver;
@BeforeMethod
public void OperaSetup() {
WebDriver... |
/* *** This file is given as part of the programming assignment. *** */
import java.util.ArrayList;
public class Parser {
// tok is global to all these parsing methods;
// scan just calls the scanner's scan method and saves the result in tok.
private Token tok; // the current token
private ArrayList<... |
package com.ar.auto.cases.mtbf;
import com.ar.auto.common.AutoTestCase;
import com.ar.auto.common.CaseName;
import org.junit.Test;
public class AppStoreAndDownloadStability extends AutoTestCase {
/**
* 5.1.5.1: Open/Close the Store Front Client
*
* Number of loops: 20
*
* 1. Open and ... |
package br.udesc.controller;
import br.udesc.controller.tablemodel.SalaModel;
import br.udesc.model.dao.SalaJpaController;
import br.udesc.model.dao.exceptions.NonexistentEntityException;
import br.udesc.model.entidade.Sala;
import br.udesc.view.TelaCadastroSala;
import br.udesc.view.TelaTableSala;
import java... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package agencia;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
im... |
import processing.core.*;
import processing.data.*;
import processing.event.*;
import processing.opengl.*;
import java.util.HashMap;
import java.util.ArrayList;
import java.io.File;
import java.io.BufferedReader;
import java.io.PrintWriter;
import java.io.InputStream;
import java.io.OutputStream;
import jav... |
package com.nevin.pjm;
import java.util.concurrent.TimeUnit;
import javax.jms.Connection;
import javax.jms.Destination;
import javax.jms.Message;
import javax.jms.MessageConsumer;
import javax.jms.MessageListener;
import javax.jms.Session;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activ... |
package com.nxtlife.mgs.jpa;
import java.util.List;
import java.util.Set;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import com.n... |
package com.leyou.item.api;
import com.leyou.common.pojo.PageResult;
import com.leyou.item.pojo.Sku;
import com.leyou.item.pojo.Spu;
import com.leyou.item.pojo.SpuDetail;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annot... |
/*
* Copyright (C) 2015 Miquel Sas
*
* 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 program is d... |
package pl.java.scalatech.jms;
import java.util.HashMap;
import java.util.Map;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.jms.... |
package com.example.bomber;
import java.io.Serializable;
public class DatosEmergencia implements Serializable {
protected int emergencia_id;
protected String lugar;
protected String tipo;
protected String telefono;
protected Double latitude;
protected Double longitude;
private int imagen;
public D... |
package polozov;
import java.io.BufferedReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class MapRoadStorage {
public static Map<City, Set<Road>> MAP_ROAD = new HashMap<>();
public static void main(String[] args) throws IOException {... |
package activites;
import services.MyApplication;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RadioButton;
import com.eskaa.callLog.R;
import db.DBHelper;
... |
package com.qihoo.finance.chronus.worker.bo;
import com.qihoo.finance.chronus.metadata.api.task.entity.TaskEntity;
import com.qihoo.finance.chronus.metadata.api.task.entity.TaskRuntimeEntity;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public final class JobContext {
private String key;
priv... |
package org.newdawn.slick;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import org.lwjgl.LWJGLException;
import org.lwjgl.input.Controller;
import org.lwjgl.input.Controllers;
import org.lwjgl.input.Ke... |
package com.tkb.elearning.action.admin;
import java.io.IOException;
import java.util.List;
import com.tkb.elearning.model.EnsureRight;
import com.tkb.elearning.service.EnsureRightService;
import com.tkb.elearning.util.VerifyBaseAction;
public class EnsureRightAction extends VerifyBaseAction {
private static final... |
package com.udem.ift6243.dao;
import java.util.ArrayList;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import com.udem.ift6243.model.Solution;
import com.udem.ift6243.sql.schema.SolutionSchema;
public class Solut... |
package com.alibaba.otter.canal.client.adapter.rdb.service;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java... |
package com.example.ducnhan.dulichphuquy;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.MenuItem;
import android.view.animation.Animation;... |
package it.polimi.ingsw.GC_21.BOARD;
import static org.junit.Assert.*;
import org.junit.Test;
import it.polimi.ingsw.GC_21.GAMECOMPONENTS.DevCardType;
import it.polimi.ingsw.GC_21.GAMEMANAGEMENT.Game;
import it.polimi.ingsw.GC_21.PLAYER.Color;
import it.polimi.ingsw.GC_21.PLAYER.FamilyMemberColor;
import it.polimi.i... |
package com.tencent.mm.plugin.wallet_core.c;
import com.tencent.mm.ab.b;
import com.tencent.mm.ab.b.a;
import com.tencent.mm.ab.e;
import com.tencent.mm.ab.l;
import com.tencent.mm.network.k;
import com.tencent.mm.network.q;
import com.tencent.mm.protocal.c.uk;
import com.tencent.mm.protocal.c.ul;
import com.tencent.m... |
package de.ur.mi.android.lauflog.log;
/**
* Dieses Enum bildet die verschiedene Modi für die Sortierung der Log-Einträge ab. Einträge können
* nach Zeitpunk, zurückgelegter Strecke oder durchschnittlicher Geschwindigkeit sortiert werden.
*/
public enum LogSortMode {
DATE,
DISTANCE,
PACE
}
|
package com.tencent.mm.plugin.account.ui;
import android.text.Editable;
import android.text.TextWatcher;
class RegByMobileRegAIOUI$21 implements TextWatcher {
final /* synthetic */ RegByMobileRegAIOUI eVb;
RegByMobileRegAIOUI$21(RegByMobileRegAIOUI regByMobileRegAIOUI) {
this.eVb = regByMobileRegAIOU... |
package uz.kassa.test.service.security;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import uz.kassa... |
package Day2;
import java.util.InputMismatchException;
import java.util.Scanner;
public class CalculateAreaWithValidation {
static double length,width;
static String choice;
public static void main(String[] args) throws MyOutOfRangeException {
// TODO Auto-generated method stub
Scanner sc = new Scann... |
import java.util.Objects;
public class Security extends AbstractWorker {
protected double area;
final int BASE = 1000;
final int CONST1 = 30;
public Security() {
}
public Security(String name, String organization, double coefficient, double area) {
super(name, organization, coefficien... |
package gov.ssa.functionalfitness.dao;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate5.HibernateTemplate;
import org.springframework.stereotype.Repository;
import gov.ssa.functionalfitness.entity.User;
@Repository
public class UserDAO i... |
package pe.edu.upc.demo.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import pe.edu.upc.demo.entity.Atencion;
public interface AtencionRepository extends JpaRepository<Atencion, Integer>{
}
|
package plattern.BridgePattern;
public interface Color {
public String description ();
}
|
package com.bridgeit.algorithmprogram;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
public class OrderedList {
public static void main(String[] args) throws Exception {
FileReader file = new FileReader(
"//home//bridgeit//Documents//workspace-sts-3.9.3.RELEAS... |
package com.tencent.mm.plugin.account.friend.ui;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
class FindMContactAddUI$3 implements OnCancelListener {
final /* synthetic */ FindMContactAddUI eLW;
FindMContactAddUI$3(FindMContactAddUI findMContactAddUI) {
... |
package com.noteshare.course;
import com.noteshare.common.utils.cache.impl.CurrentCacheImpl;
public class CourseConstant {
/**
* 课程头部推荐课程开始值
*/
public static final Integer COURSE_RECOMMEND_START = 0;
/**
* 课程头部推荐课程结束值
*/
public static final Integer COURSE_RECOMMEND_END = 15;
/**
* 默认缓存ip访问记录时间10分钟,10分钟... |
import java.util.*;
import java.lang.*;
public class Letter {
//CAMPI
private Random r = new Random();
private char c;
private boolean visited;
//COSTRUTTORE
/*public Letter(char c) {
this.c = c; //(char)(r.nextInt(26) + 'a');
visited = false;
}*/
public Letter() {
c = (char)(r.nextInt(26) + 'a');
v... |
package com.delaroystudios.smartlock;
/**
* Created by delaroystudios on 10/13/2016.
*/
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class ContentActivity extends AppCompatActivity {
priv... |
package collections.optinal.mains;
import collections.optinal.SortList;
import java.io.IOException;
import java.util.ArrayList;
public class MainSortList {
public static void main(String[] args) throws IOException {
ArrayList<String> list = SortList.sortList("src/main/resources/fileForSortAndCountWords.... |
package com.shopify.admin.cs;
import java.util.Map;
import javax.servlet.http.HttpSession;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype... |
package com.niubimq.thread;
/**
* @Description:
* @author junjin4838
* @date 2016年9月2日
* @version 1.0
*/
public interface LifecycleListener {
public void lifecycleEvent(int state);
}
|
package org.bofur.search.statement;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import android.text.TextUtils;
public class CompositStatement implements Statement{
List<String> statements;
public CompositStatement() {
statements = new ArrayList<String>();
}
public void add(St... |
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package BPMN.impl;
import BPMN.BPMNEventEndUsed;
import BPMN.BPMNPackage;
import org.eclipse.emf.ecore.EClass;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Event End Used</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @gen... |
package hu.aensys.exception.wrap;
import hu.aensys.exception.wrap.parser.Parser;
import hu.aensys.exception.wrap.parser.StdParser;
import hu.aensys.exception.wrap.parser.StringParser;
/**
* @author David Szendrei <david.szendrei@aensys.hu>
*/
public class MainWrap {
public static void main(String[] args) {
... |
package com.hqhcn.android.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.hqh.android.dao.GpsMapper;
import com.hqh.android.entity.Exampreasign;
import com.hqh.android.entity.Gps;
import com.hqh.android.entity.GpsExample;
import com.hqh.android.service.*;
import com.hqh.android.tool.AttrUtils;
import ... |
package org.newdawn.slick;
public interface KeyListener extends ControlledInputReciever {
void keyPressed(int paramInt, char paramChar);
void keyReleased(int paramInt, char paramChar);
}
/* Location: C:\Users\BSV\AppData\Local\Temp\Rar$DRa6216.20396\Preview\Preview.jar!\org\newdawn\slick\KeyListe... |
/*
* Copyright 2017 Sanjin Sehic
*
* 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 applicable law or agreed to... |
package com.example.pattern.state.order.state;
import com.example.pattern.state.order.OrderSate;
/**
*/
public class OrderStateContext {
private Order order;
private OrderSate newOrderState;
private OrderSate registeredState;
private OrderSate grantedState;
private OrderSate shiped... |
/*
* Copyright 2009 Kjetil Valstadsve
*
* 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 applicable law or agre... |
/**
* @author smxknife
* 2018-12-20
*/
package com.smxknife.log.log4j; |
package com.zihui.cwoa.system.pojo;
import java.util.List;
public class sys_task {
private Integer taskId;
private Integer taskUserId;
private String taskRemark;
private Integer taskStatus;
private String attachment;
private String ts;
private String tempVar1;
... |
import java.util.ArrayList;
import java.util.Collections;
/**
* Created with IntelliJ IDEA.
* User: ngupta
* Date: 27/10/19
* Time: 12:00 PM
*/
/**
* To get a Collatz sequence from a number, if it's even, divide it by two, and if it's odd, multiply it by three and add one.
* Continue the operation on the resu... |
package com.zihui.cwoa.routine.dao;
import com.zihui.cwoa.routine.pojo.rw_mail;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface rw_mailMapper {
int deleteByPrimaryKey(Integer mailId);
int insertSelective... |
/**
*/
package PetrinetDSL.util;
import PetrinetDSL.*;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notifier;
import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* The <b>Adapter Factory</b> for t... |
package com.zhonghuilv.shouyin.service;
/**
* Created by llk2014 on 2018-07-04 17:13:48
*/
public interface OrderBackDetailsService {
}
|
package com.tencent.mm.ui.chatting.h.a;
class a$b$a {
}
|
package ajedrez;
import java.util.LinkedList;
public class Peon extends Figura {
private final static int valor=1;
/**
* Figura de ajedrez: Peon.
* @author POO.
* @param color Color de la Figura.
* @param posicion Posición inicial de la Figura.
*/
public Peon(Color color, Posicion posicion) {
super... |
/**
* Javassonne
* http://code.google.com/p/javassonne/
*
* @author Hamilton Turner
* @date Jan 20, 2009
*
* Copyright 2009 Javassonne Team
* 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 th... |
package com.example.demo;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloSecretController {
String greeting = "Hi1234";
@GetMapping("/java")
public String hello() {
return greeting + " World!";
}
... |
execute(des, src, registers, memory) {
Calculator c = new Calculator(registers, memory);
String destination;
String source;
int desSize = 0;
String countStr;
int totalHexSize = 0;
boolean isSizeAllowable = false;
int[] addMode = new int[2];
for(int x = 0; x < 2; x++) {
addMo... |
package com.mcf.manage.web.controller.news;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.spring... |
package com.upside.echo.dao;
import com.upside.echo.model.Greeting;
import com.upside.model.jdbi.argument.UUIDArgumentFactory;
import java.util.Collection;
import java.util.UUID;
import org.skife.jdbi.v2.sqlobject.Bind;
import org.skife.jdbi.v2.sqlobject.SqlQuery;
import org.skife.jdbi.v2.sqlobject.SqlUpdate;
import o... |
package com.tencent.mm.ab;
public interface g$a {
void wd();
}
|
package com.funkygames.funkyhilo.services;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.funkygames.funkyhilo.constants.Choice;
import com.funkygames.funkyhilo.constants.ReplayChoice;
import com.funkygames.funkyhilo.exception.Inval... |
package com.mx.profuturo.bolsa.service.reports;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
import org.apache.p... |
package algorithms.sorting;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.util.Arrays;
import java.util.UUID;
import java.util.stream.Stream;
public abstract class Sort<T extends Comparable<? super T>> {
private static final Logger LOGGER = LogManager.getLogger(S... |
package com.example.demodatapassingtext;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
public class thirdActivity extends AppCompatActivity {
TextView tvChar;
@Override
protected void onCreate(Bundle savedInstance... |
package com.project.homes.app.common.comment.service;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.RequestParam;
import com.project.home... |
/*
* FileName: AutoBinderMultiActionController.java
* Description:
* Company: 南宁超创信息工程有限公司
* Copyright: ChaoChuang (c) 2005
* History: 2005-12-16 (guig) 1.0 Create
*/
package com.spower.basesystem.common.controller;
import java.util.HashMap;
import java.util.Iterator;
import java.util.... |
//package nl.jtosti.hermes.entities;
//
//import org.junit.jupiter.api.DisplayName;
//import org.junit.jupiter.api.Test;
//import org.springframework.security.core.authority.SimpleGrantedAuthority;
//import org.springframework.security.core.userdetails.UserDetails;
//
//import java.util.ArrayList;
//import java.util.Co... |
package com.tencent.mm.plugin.subapp.jdbiz;
import com.tencent.mm.g.a.km;
import com.tencent.mm.plugin.report.service.h;
import com.tencent.mm.sdk.b.a;
import com.tencent.mm.sdk.b.b;
import com.tencent.mm.sdk.b.c;
import com.tencent.mm.sdk.platformtools.bi;
class a$1 extends c<km> {
final /* synthetic */ a oqE;
... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Entidades;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
import javax.persistence.Basic;
im... |
package com.facemelt.spitter.dao;
import java.util.List;
import com.facemelt.spitter.domain.Spitter;
import com.facemelt.spitter.domain.Spittle;
public interface SpittleDAO {
public void addSpittle(Spittle spittle);
public List<Spittle> getSpittles();
public void removeSpittle(Long id);
}
|
package zystudio.cases.prepare;
/**
* 关于import java.lang.ref.ReferenceQueue的 case的,我意识到这好像是一个有用的东西
*/
public class CaseForReferenceQueue {
}
|
import java.util.Map;
import java.util.TreeMap;
/**
* Created by user on 23/06/2017.
*/
public class BlocksFromSymbolsFactory {
private Map<String, Block> blocks;
private Map<String, Integer> spacerWidths;
/**
* constructs a BlocksFromSymbolsFactory object from two maps:
* first map:... |
package com.tencent.tinker.loader;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.res.AssetManager;
import android.content.res.Resources;
import android.os.Build.VERSION;
import android.util.ArrayMap;
import com.tencent.tinker.loader.shareutil.SharePatchFileUtil;
impo... |
package com.hesoyam.pharmacy.util.report.calculator;
import com.hesoyam.pharmacy.pharmacy.model.Sale;
import com.hesoyam.pharmacy.util.report.ReportData;
import com.hesoyam.pharmacy.util.report.label.QuarterlyReportLabel;
import java.time.LocalDateTime;
import java.time.Month;
import java.util.EnumMap;
public class ... |
package com.hesoyam.pharmacy.pharmacy.mapper;
import com.hesoyam.pharmacy.pharmacy.dto.CreateOfferDTO;
import com.hesoyam.pharmacy.pharmacy.dto.OfferDTO;
import com.hesoyam.pharmacy.pharmacy.model.Offer;
public class OfferMapper {
private OfferMapper() {}
public static Offer mapCreateOfferDTOToOffer(CreateO... |
package com.tencent.mm.protocal;
import com.tencent.mm.protocal.c.g;
public class c$jg extends g {
public c$jg() {
super("stopRecord", "stopRecord", 98, false);
}
}
|
package chapter06;
public class Exercise06_01 {
public static void main(String[] args) {
final int NUMBER_OF_LOOP = 100;
final int NUMBER_OF_LINE = 10;
for (int i = 1; i <= NUMBER_OF_LOOP; i++) {
System.out.printf("%-6d", getPentagonalNumberOneByOne(i));
if (i % NUMBER_OF_LINE == 0)
System.out.print... |
package main.java.model.calculator;
// Author: Alexander Larnemo Ask, Jonatan Bunis, Vegard Landrö, Mohamad Melhem, Alexander Larsson Vahlberg
// Responsibility: Datastructure for the input and output of the calculators.
// Used by: ModelFacade, ModelAggregate, CalculatorFacade, ResultViewController, [Each Calculator ... |
package com.sunteam.library.parse;
import java.util.ArrayList;
import org.json.JSONArray;
import org.json.JSONObject;
import com.sunteam.library.entity.BookmarkEntity;
import com.sunteam.library.utils.LogUtils;
//解析书签列表
public class GetBookMarkParseResponse extends AbsParseResponse
{
public static final String TA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.