text stringlengths 10 2.72M |
|---|
package com.mes.old.meta;
// Generated 2017-5-22 1:25:24 by Hibernate Tools 5.2.1.Final
import java.math.BigDecimal;
import java.util.Date;
/**
* BCostRatioId generated by hbm2java
*/
public class BCostRatioId implements java.io.Serializable {
private String uniqueid;
private String costElementId;
private Strin... |
package backjoon.minpath;
import java.io.*;
import java.util.StringTokenizer;
class Bus{
// 시작점, 도착점, 걸리는 시간
int start, end, weight;
public Bus(int start, int end, int weight){
this.start = start;
this.end = end;
this.weight = weight;
}
}
public class Backjoon11657 {
pri... |
package com.tencent.mm.ui.chatting.b;
import android.content.Context;
import android.view.View;
import android.view.View.OnClickListener;
import com.tencent.mm.R;
import com.tencent.mm.sdk.platformtools.x;
import com.tencent.mm.ui.base.h;
import com.tencent.mm.ui.chatting.b.b.g;
class j$2 implements OnClickListener {... |
package br.com.cem01.model;
import java.io.Serializable;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.per... |
package p4_group_8_repo.Game_actor;
import javafx.scene.image.ImageView;
import javafx.scene.input.InputEvent;
import p4_group_8_repo.Game_scene.World;
import java.util.ArrayList;
/**
* Class of Actor
* @author Jun Yuan
*
*/
public abstract class Actor extends ImageView{
/**
* Method for animations to move (... |
package com.example.satu.mediapp.Interfaces;
import com.example.satu.mediapp.Data.Medicine;
/**
* Created by Satu on 2016-01-05.
*/
public interface OnMedicinePut {
public void onMedicinePut(Medicine medicine);
}
|
package com.ellalee.travelmaker;
import android.app.Activity;
import android.content.ContentValues;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextV... |
/*
* 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... |
package leetcode;
/**
* @author kangkang lou
*/
public class Main_174 {
public int calculateMinimumHP(int[][] dungeon) {
if (dungeon == null || dungeon.length == 0 || dungeon[0].length == 0) return 0;
int m = dungeon.length;
int n = dungeon[0].length;
int[][] health = new int[m][... |
package com.zs.dao.split;
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
/**
* @Created by IDEA
* @author:LiuYiBo(小博)
* @Date:2018/7/31
* @Time:9:53
*/
public class DynamicDataSource extends AbstractRoutingDataSource {
@Override
protected Object determineCurrentLookupKey() {... |
package com.zzidc.web.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.context.request.async.DeferredResult;
import java.util.concurrent.Call... |
package com.tencent.mm.ui.base.sortview;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.AdapterView.OnItemLongClickListener;
import android.widget.AdapterView.OnI... |
package net.minecraft.network.play.server;
import java.io.IOException;
import net.minecraft.network.INetHandler;
import net.minecraft.network.Packet;
import net.minecraft.network.PacketBuffer;
import net.minecraft.network.play.INetHandlerPlayClient;
import net.minecraft.util.math.BlockPos;
public class SPacketBlockBr... |
package co.nos.noswallet.network.websockets;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.os.Handler;
import android.os.Looper;
import android.support.annotation.Nullable;
import android.util.Log;
import com.google.gson.annotations.SerializedName;
... |
package fr.tenebrae.MMOCore.Quests.MMOQuest;
import java.util.ArrayList;
import fr.tenebrae.MMOCore.Entities.MMOEntities.L10AlphaTestZombie;
import fr.tenebrae.MMOCore.Quests.DiscoverCoord;
import fr.tenebrae.MMOCore.Quests.KillCounter;
import fr.tenebrae.MMOCore.Quests.Quest;
import fr.tenebrae.MMOCore.Quests.QuestC... |
package com.bingo.code.example.design.state.leaverequestcomplete;
public class Client {
public static void main(String[] args) {
//����ҵ���������ҵ������
LeaveRequestModel lrm = new LeaveRequestModel();
lrm.setUser("��");
lrm.setBeginDate("2010-02-08");
lrm.setLeaveDays(5);
//������������
LeaveReq... |
package com.example.inspired.simplified;
import android.content.Context;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import androi... |
package code;
/**
* Created by likz on 2023/4/26
*
* @author likz
*/
public class SortColors {
public void sortColors(int[] nums) {
int less = -1;
int more = nums.length;
int index = 0;
while(index < more){
if (nums[index] == 1){
index++;
... |
package net.npaka.appwidgetex;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.content.Intent;
//ホームスクリーンウィジェットを提供するブロードキャストレシーバー(1)
public class AppWidgetEx extends AppWidgetProvider {
//ホームスクリーンウィジェット更新時に呼ばれる
@Override
... |
package com.n26.challenge.statistics.service;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.util.function.BiPredicate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.s... |
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package basiclibrary;
import java.util.*;
public class Library {
public static void main(String[] args) {
int[] input = new int[]{1, 2, 3, 4, 5};
System.out.println(containsDuplicates(input));
int[] dice = roll(6);
... |
package com.dave.project.util;
import android.util.Log;
import java.util.List;
/**
* 创建和删除db表的语句
* Created by Dave on 2016/12/30.
*/
public class DBTableUtil {
/**
* 返回拼接好的sql语句(主键自动默认设置为_id,自增长)
*
* @param tableName 表名字
* @param clumList clum集合
* @return 返回创建表的语句
... |
package com.wannajob.core.services.company;
public class CompanyUserService {
}
|
package com.module.controllers.veterandialog.tables;
import com.module.model.entity.VeteranWoundEntity;
import com.module.model.entity.WoundDisabilityEntity;
import com.module.model.entity.WoundTypeEntity;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
impor... |
package com.controller;
import com.entity.Department;
import com.service.DepartmentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.List;
import java.util.Map;
/**
... |
package com.changgou.goods.controller;
import com.changgou.goods.pojo.Goods;
import com.changgou.goods.pojo.Spu;
import com.changgou.goods.service.SpuService;
import com.github.pagehelper.Page;
import entity.PageResult;
import entity.Result;
import entity.StatusCode;
import org.springframework.beans.factory.annotation... |
package util;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Locale;
/**
* @author Kl... |
package com.bjtu.deviceusage.thread;
import android.util.Log;
public class TrackControlThread extends Thread{
private static final String TAG = "TrackControlThread";
@Override
public void run(){
Log.v(TAG, "TrackControlThread run");
}
}
|
/*
* Copyright 2014 the original author or authors.
*
* 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 applica... |
package com.cs4125.bookingapp.controller;
import static org.junit.jupiter.api.Assertions.assertEquals;
import com.cs4125.bookingapp.controllers.UserController;
import com.cs4125.bookingapp.model.ConcreteUserFactory;
import com.cs4125.bookingapp.model.UserFactory;
import com.cs4125.bookingapp.model.repositories.LogRe... |
package it.unirc.pwm.eureca.tessera.dao;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.hibernate.Session;
import org.hibernate.Transaction;
import it.unirc.pwm.eureca.hibernate.util.HibernateUtil;
import it.unirc.pwm.eureca.socio.model.Socio;
import it.unirc.pwm.eureca... |
/*
* Program: GameObject.java
* Project: MissileDefense
* Author: J. Ethan Wallace and Michael Gibson
* Date Written: 10/05/2014 - 10/08/2014
* Abstract: This is the abstract class from which all game objects are derived.
* It is not implemented directly, but many of its functions do all the work for its childre... |
package charts;
public class Chart {
}
|
package cnrst.ma.entity;
public enum BoursierEnum {
Rejete,Active,EnListeAttente,EnListePrincipale,Admis,EnCours
}
|
package swm11.jdk.jobtreaming.back.app.lecture.service;
import lombok.AllArgsConstructor;
import org.springframework.data.domain.PageRequest;
import org.springframework.stereotype.Service;
import swm11.jdk.jobtreaming.back.app.lecture.model.LectureQuestion;
import swm11.jdk.jobtreaming.back.app.lecture.repository.Lect... |
package collector.event.listener.kafka;
import collector.configuration.EthConfiguration;
import collector.configuration.EthKafkaConfiguration;
import collector.event.EthBlockEvent;
import collector.event.publisher.EthBlockPublisher;
import collector.event.publisher.EthTransactionPublisher;
import collector.message.kaf... |
package com.github.hippo.server;
import com.github.hippo.bean.HippoRequest;
import com.github.hippo.bean.HippoResponse;
import com.github.hippo.chain.ChainThreadLocal;
import com.github.hippo.enums.HippoRequestEnum;
import com.github.hippo.exception.HippoRequestTypeNotExistException;
import com.github.hippo.exception.... |
/**
* LibraryConfiguration.java
*/
package org.crf.libmatrix.core;
import java.util.Map;
import java.util.HashMap;
/**
*
* @author cvirtue
* @version "%I%, %G%"
*/
public class LibraryConfiguration {
/**
* Overrides the configuration value specified by its name by the value
* passed as argument.
* <p>... |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License... |
package Model;
public class Edge {
private double cost;
private int firstVertexId;
private int secondVertexId;
public Edge(double cost, int firstVertexId, int secondVertexId) {
this.cost = cost;
this.firstVertexId = firstVertexId;
this.secondVertexId = secondVertexId;
}
... |
// Queue class to help parse the txt file
// Holds individual words with no outer punctuation
public class Queue
{
// pointers for the front and the rear of the queue
private QNode front;
private QNode rear;
private QNode beginning;
//constructor to assign front and rear to null
public Queue()
{
... |
package com.teaman.accessstillwater.ui.establishment;
import android.content.Context;
import android.support.v7.widget.AppCompatRatingBar;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import androi... |
package com.fanooos.ScatterAndGather.service;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.integration.channel.QueueChannel;
import org.s... |
package com.lupan.HeadFirstDesignMode.chapter8_template;
/**
* TODO
*
* @author lupan
* @version 2016/3/24 0024
*/
public abstract class CaffeineBeverage {
/**
* 模板方法
*/
public void prepareRecipe(){
System.out.println("准备咖啡因饮料。。。");
boilWater();
pureInCup();
brew... |
package graph;
import java.util.Arrays;
import java.util.Comparator;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.PriorityQueue;
public class MinGenerateTree {
// 边
class edges{
int weight;
int point1;
int point2;
public edges(int ... |
package dev.felicity.felicity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;
import android.view.View;
import android.content.Intent;
import com.google.firebase.auth.FirebaseAuth;
import android.text.TextUtils;
import android.wi... |
package Basics;
public class Armstrongno
{
public static void main(String[] args)
{
int n=153,r,s=0;
int a=n;
while(a>0)
{
r=a%10;
a=a/10;
s=s+r*r*r;
}
if(s==n)
System.out.println(s+" A Armstrong number.");
... |
package com.croxx.hgwechat.res.didiumbrella;
import com.croxx.hgwechat.model.didiumbrella.DidiUmbrellaOrder;
import java.util.List;
public class ResDidiUmbrellaWithOrders extends ResDidiUmbrella {
private List<DidiUmbrellaOrder> orders;
public ResDidiUmbrellaWithOrders() {
}
public ResD... |
import java.util.Scanner;
public class P22 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
final long first = Util.promptLongData("Enter the first number ", sc);
final long second = Util.promptLongData("Enter the second number ", sc);
final long thir... |
package com.ygrik.currencyrate.app.api.retrofit;
import com.ygrik.currencyrate.app.network.models.CurrencyRate;
public interface Callback<T> {
void onFinish(T model);
void onError(String errorMessage);
}
|
package com.tencent.mm.ui.contact;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemLongClickListener;
import com.tencent.mm.model.s;
import com.tencent.mm.sdk.platformtools.x;
import com.tencent.mm.storage.f;
import com.tencent.mm.ui.contact.AddressUI.a;
class Addr... |
package com.javazuki.sample.javaee.request;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet(urlPatterns = { "/... |
package com.tencent.mm.protocal.c;
import f.a.a.c.a;
import java.util.LinkedList;
public final class byz extends bhd {
public int rth;
public int rxG;
public long rxH;
public String seC;
public cak suK;
public cak suL;
public long suO;
public int suY;
public int suZ;
protected... |
package net.acomputerdog.lccontroller.gui;
import net.acomputerdog.lccontroller.LaserProperties;
import net.acomputerdog.lccontroller.gui.script.ScriptRunner;
import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
public class ComponentScriptPath extends JPanel {
public static final int LI... |
/**
* DateValidator.java
*
* Skarpetis Dimitris 2016, all rights reserved.
*/
package dskarpetis.elibrary.ui.validator;
import java.util.Date;
/**
* Common date validator that define min and max range
*
* @author dskarpetis
*/
public class DateValidator {
/**
* Regular expression pattern in the form of St... |
package day46_encapsulation;
public class CapitalOne {
public static void main(String[] args) {
CheckingAccount myBank =new CheckingAccount();
myBank.setAccountNumber(45612398456554L);
System.out.println("Account number is " + myBank.getAccountNumber());
myBank.setAccountHolder(... |
package LeetCodeUtils.Experience.test;
import LeetCodeUtils.Experience.sortBean.BubbleSort;
import LeetCodeUtils.Experience.container.Container;
public class AnnotationTest {
public static void main(String[] args) throws Exception {
Container ioc = new Container();
BubbleSort bean1 = (BubbleSort)... |
/**
* @author zxq876 Zetian Qin
* The solution of Worksheet2.
*/
public class Worksheet2 implements Worksheet2Interface {
// Exercise 1
static Tree<Integer> negateAll(Tree<Integer> t) {
if(t.isEmpty()) {
return new Tree<Integer>();
}
else {
return new Tree<Integer>(0 - t.getValue(), negateAll(t.getL... |
package com.anxpp.io.calculator.bio;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.Socket;
import java.util.HashMap;
public class sendphoto {
private Socket socket;
public sendphoto(Socket socket) {
this.socket = socket;
}
public void send(String... |
/*
* [y] hybris Platform
*
* Copyright (c) 2000-2016 SAP SE
* All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* Hybris ("Confidential Information"). You shall not disclose such
* Confidential Information and shall use it only in accordance with the
* terms of the l... |
package com.accp.pub.mapper;
import com.accp.pub.pojo.Surveystatistics;
public interface SurveystatisticsMapper {
int deleteByPrimaryKey(Integer statisid);
int insert(Surveystatistics record);
int insertSelective(Surveystatistics record);
Surveystatistics selectByPrimaryKey(Integer statisid);
... |
package com.DeGuzmanFamilyAPI.DeGuzmanFamilyAPIBackend.app_repository;
import java.util.List;
import java.util.Optional;
import org.springframework.data.domain.Example;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org... |
package hk.edu.polyu.comp.comp2021.jungle.model;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Unit test for Coordinates
*/
public class CoordinatesTest {
/**
* Specific hash code for tile C5
*/
private static final int HASH_CODE_C5 = 66;
/**
* Test case for valid coor... |
package com.takshine.wxcrm.model;
import java.util.Date;
import com.takshine.wxcrm.base.common.Constants;
import com.takshine.wxcrm.base.model.BaseModel;
import com.takshine.wxcrm.base.util.PropertiesUtil;
import com.takshine.wxcrm.base.util.StringUtils;
/**
* 消息
* @author liulin
*
*/
public class MessagesModel ... |
/*
* Frame that allows the user to reset all data in the database.
*/
package stockorganizer;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JBu... |
/*
* 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 thediary;
/**
*
* @author lkf5083
*/
public class DiaryCntl {
// Instance variables
private Di... |
package fadhel.iac.tn.eventtracker.parsers;
import android.text.Html;
import android.util.Log;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java... |
package com.ben.web.servlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface HandlerAdapter {
ModelAndView handle(HttpServletRequest request,HttpServletResponse response,Controller handler);
}
|
package com.lingnet.vocs.action.customer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import javax.annotation.Resource;
import org.hibernate.criterion.Restrictions;
import com.lingnet.common.action.BaseAction;
import com.lingnet.qxgl.entity.QxUsers;
import com.lingnet.qx... |
/** originally used the nullwire code, tweaked out for carcast. */
package com.jadn.cc.trace;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.NameValuePair;
import org.apache.http.... |
package com.fight.job.core.biz.model;
import java.io.Serializable;
/**
* RegisterParam.
*/
public class RegisterParam implements Serializable {
private static final long serialVersionUID = -1L;
private String ip;
private int port;
private String groupId;
private String executorName;
privat... |
package eu.lsem.bakalarka.webfrontend.extensions.typeconverters;
import net.sourceforge.stripes.integration.spring.SpringBean;
import eu.lsem.bakalarka.dao.categories.CategoryDao;
public class ThesesCategoryTypeConverter extends CategoryTypeConverter {
@Override
@SpringBean("thesesCategoriesDao")
... |
package ca.antonious.habittracker.observable;
import junit.framework.Assert;
import java.util.ArrayList;
import java.util.List;
/**
* Created by George on 2016-09-14.
*/
public class TestObserver<T> implements IObserver<T> {
private List<T> itemsEmitted = new ArrayList<>();
@Override
public void onNex... |
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... |
package af;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
public class As {
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
... |
package squares;
public class SqureIn {
public static int add(int x, int y) {
return 1;
}
public class add{
public add(int x, int y) {
}
}
}
|
package comparepdf;
import com.testautomationguru.utility.CompareMode;
import com.testautomationguru.utility.PDFUtil;
import java.io.IOException;
public class ComparePDF {
public static void main(String[] args) {
final PDFUtil pdfUtil = new PDFUtil();
String file1="C:/PDFtest/1.pdf";
Stri... |
package com.tencent.mm.plugin.setting.ui.setting;
import com.tencent.mm.kernel.g;
import com.tencent.mm.modelsimple.ac;
import com.tencent.mm.sdk.platformtools.al.a;
class SettingsUI$7 implements a {
final /* synthetic */ ac mRd;
final /* synthetic */ SettingsUI mUx;
SettingsUI$7(SettingsUI settingsUI, a... |
import java.util.Vector;
/**
* @author Dan
*
*/
public class Concept {
String name;
Vector<String> terms;
/**
* Constructor
* @param name
*/
public Concept(String name) {
this.name = name;
terms = new Vector<String>();
}
/**
* addTerm
* @param term
*/
public v... |
package layouts;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import logs.Logs;... |
package cc.stan.example.springcloudconfigclient;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.context.config.annotation.RefreshScope;
@SpringBootApplication
@RefreshScope
public class App {
public static v... |
package com.tencent.mm.ak;
import com.tencent.mm.ab.s;
import com.tencent.mm.ab.u;
import com.tencent.mm.modelcdntran.b;
import com.tencent.mm.modelcdntran.d;
import com.tencent.mm.modelcdntran.g;
import com.tencent.mm.modelcdntran.i.a;
import com.tencent.mm.modelcdntran.keep_ProgressInfo;
import com.tencent.mm.modelc... |
package Controller;
import Model.ClientClass;
import View.Classes.*;
import sun.security.pkcs11.wrapper.Constants;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Objects;
import javax.swing.*;
import javax.swi... |
package boj;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class BOJ_14501_퇴사 {
private static int N;
private static int max = Integer.MIN_VALUE;
p... |
package com.android.netperf_new.tasks;
import android.util.Log;
import com.android.netperf_new.model.PingerItem;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
/**
* Created by Peace on 7/16/2017.
*/
public class NameResolver implements Runnable {
private Stri... |
package com.tencent.mm.ui.tools;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.MotionEvent;
class MMGestureGallery$d extends SimpleOnGestureListener {
final /* synthetic */ MMGestureGallery uAo;
private MMGestureGallery$d(MMGestureGallery mMGestureGallery) {
this.uA... |
/*
* 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 cl.duoc.ptf8502.app.business;
import cl.duoc.ptf8502.ejb.entity.GuiaDespacho;
import cl.duoc.ptf8502.ejb.entity.GuiaDe... |
package com.tencent.mm.ui.transmit;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
class SelectConversationUI$18 implements OnClickListener {
final /* synthetic */ SelectConversationUI uEC;
SelectConversationUI$18(SelectConversationUI selectConversationUI) {
... |
package com.velue.distance.service;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import com.baidu.location.BDLocation;
import com.baidu.location.BDLocationListener;
import com.baidu.location.LocationClient;
import com.baidu.location.LocationClientOption;
import com.velue.dista... |
/*
* Copyright 2017-present The Material Motion Authors. All Rights Reserved.
*
* 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
*
* ... |
package cnn;
import main.VisualEdge;
/**
* Repräsentiert eine Kante zwischen 2 Neuronen
*
* @author Jens Krüger
* @author Niklas Bruns
* @author Marc Seibel
*
* @author Florian Determann
* @author Jonas Jansen
*
* @version 1.1
*
*/
public class Edge {
private double currentWeight;
private double last... |
package com.bts.essentials;
import org.junit.runner.RunWith;
import org.springframework.test.context.junit4.SpringRunner;
/**
* Created by wagan8r on 3/18/18.
*/
@RunWith(SpringRunner.class)
public abstract class BaseUnitTest {
}
|
package org.bashemera.openfarm.model;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
@Document(collection = "Animal_types")
public class AnimalType {
@Id
private ... |
package com.accp.utils;
import java.io.IOException;
import java.io.InputStream;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
public class MyBatisUtils {
//... |
package auth.pack;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementati... |
package com.thomaster.ourcloud.services.request.marker;
public enum PreQueryRequestValidationType {
PREFLIGHT_UPLOAD_FLIGHT,
UPLOAD_FILE,
UPLOAD_FOLDER,
DELETE;
}
|
package com.bih.nic.saathi.Model;
import org.ksoap2.serialization.KvmSerializable;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import java.io.Serializable;
import java.util.Hashtable;
public class WardList implements KvmSerializable, Serializable
{
private static final... |
package cn.chinaunicom.monitor.http;
/**
* Created by yfyang on 2017/8/3.
*/
public enum ActionType {
Login("/openapi/mobile/login"), //登录
Chart("/openapi/zabbix/appdata"), //图形:折线图和柱状图
MainframeDetailChart("/openapi/zabbix/listtimevalues"), //... |
package com.tencent.tencentmap.mapsdk.a;
import android.graphics.Bitmap;
import android.graphics.Rect;
import com.tencent.map.lib.basemap.data.GeoPoint;
public class kc extends kb {
boolean I;
private float P;
private float Q;
private float R;
private float S;
private int T;
private int U;... |
package _base.api_helpers;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
import com.google.gson.JsonSyntaxException;
import org.apache.commons.io.IOUtils;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.config.CookieSpecs;
import org.apache.http.c... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.