text stringlengths 10 2.72M |
|---|
package com.jlgproject.model.eventbusMode;
/**
* @author 王锋 on 2017/7/12.
*/
public class IntentDebtPresonBean {
private int backDebtPager;
public IntentDebtPresonBean(int backDebtPager) {
this.backDebtPager = backDebtPager;
}
public int getBackDebtPager() {
return backDebtPager;
... |
package de.dhbw.studientag.tours;
import java.util.ArrayList;
import java.util.List;
import android.content.Context;
import android.util.Pair;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.view.ViewManager;
import ... |
package laserlight;
import laserlight.GameItemsListener.gameItems;
import laserlight.Mirror.MirrorType;
import javax.swing.*;
import java.awt.*;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.HashMap;
public clas... |
package capitulo03;
import javax.swing.JOptionPane;
public class NameDialog {
public static void main(String[] args) {
String name = JOptionPane.showInputDialog("Qual é o seu nome?");
String message = String.format("Bem-vindo, %s, ao Java Programming!", name);
JOptionPane.showMessageDialog(null, messag... |
package com.example.smilescare.Model;
import java.util.List;
public class Request {
private String phone;
private String name;
private String amount;
private String message;
private String volunteerId;
private String use;
private String orderId;
public Request() {
}
public R... |
package com.hackathon.inmobi;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
/**
* Created by Rahul Raja on 9/25/2014.
*/
public class ListAdapter extends BaseAdapter{
p... |
package jonasmohrpedersen.todolist;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.DividerItemDecoration;
import android.support.v7.widget.LinearLayoutManager;
import androi... |
package com.hesoyam.pharmacy.prescription.service.impl;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.MultiFormatReader;
import com... |
package com.devinchen.library.common.base.mvp;
/**
* CommonLibraryDemo
* com.devinchen.library.common.base.mvp
* Created by Devin Chen on 2017/5/15 22:07.
* explain:业务逻辑 mvcpu专用
*/
public interface BaseBusiness<View extends BaseView, Ui extends BaseUi> {
/**
* 绑定VU
*
* @param view
* @para... |
/* Sample code to read in test cases:*/
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
File file = new File(args[0]);
BufferedReader buffer = new BufferedReader(new FileReader(file));
String line;
String[] lineArr;
String[][] inputArr;
while ((line = buf... |
/*
* 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 ejerciciocorte1;
/**
*
* @author ESTUDIANTE
*/
public class Circulo {
private int radioCirc;
public ... |
package org.codeshifts.spring.batch.reader.csv.person;
/**
* Created by werner.diwischek on 08.05.17.
*/
public class PersonBuilder extends Person {
private String notPersisted1;
private String notPersisted2;
public PersonBuilder() {
super();
}
public Person build() {
setSalution();
setDeriv... |
package welcome;
public class Maxoccor {
private static void replaceChar(char[] charArray,char oldChar,char newChar)
{
for(char c:charArray)
{
System.out.print(c==oldChar?newChar:c);
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
String str=... |
package testk;
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.RemoteWebDriver;
public class Test {
public static void main(String[] args) {
Animal ob=new Pig();
ob.animalSou... |
/*
* 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 tolteco.sigma.utils.eventsAndListeners;
/**
* Evento de retorno de listas.
*
* @author Juliano Felipe
*/
public class Sel... |
package stringPractice;
import java.util.*;
public class PrintAllPermutations {
public static void main(String[] args) {
int arr[] = { 1, 2, 3 };
// List<List<Integer>> res = permute(arr);
List<List<Integer>> res = permuteMod(arr);
for (List<Integer> e : res) {
System.out.println(e);
}
}
static List<... |
package com.bingo.code.example.design.builder.prototype.nodesign;
/**
* ????????
*/
public interface OrderApi {
public int getOrderProductNum();
public void setOrderProductNum(int num);
}
|
package at.htl.mealcounter.control;
import at.htl.mealcounter.entity.Consumation;
import at.htl.mealcounter.entity.Person;
import io.quarkus.test.junit.QuarkusTest;
import org.assertj.db.api.Assertions;
import org.assertj.db.output.impl.Output;
import org.assertj.db.type.Table;
import org.junit.jupiter.api.BeforeAll;
... |
package org.kilocraft.essentials.bungee.api;
import net.md_5.bungee.api.ProxyServer;
import net.md_5.bungee.api.connection.ProxiedPlayer;
import net.md_5.bungee.api.plugin.Command;
import org.kilocraft.essentials.bungee.KiloEssentialsBungee;
import org.kilocraft.essentials.bungee.KiloEssentialsBungeePlugin;
import ja... |
package com.beiyelin.account.controller;
import com.beiyelin.account.bean.RoleQuery;
import com.beiyelin.account.entity.Role;
import com.beiyelin.common.reqbody.PageReq;
import com.beiyelin.common.reqbody.QueryReqBody;
import com.beiyelin.common.utils.DateUtils;
import com.fasterxml.jackson.databind.ObjectMapper;
impo... |
package com.orangelittle.servicos;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.an... |
package com.tencent.tencentmap.mapsdk.map;
import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.tencent.tencentmap.mapsdk.a.i;
public clas... |
package uk.gov.ons.ctp.response.action.export.scheduled;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.given;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.verify;
import java.io.ByteArrayOutputStream;
... |
package com.nxtlife.mgs.service;
import java.util.List;
import java.util.Set;
import org.springframework.http.ResponseEntity;
import org.springframework.web.multipart.MultipartFile;
import com.nxtlife.mgs.util.ExcelUtil;
import com.nxtlife.mgs.view.CertificateRequest;
import com.nxtlife.mgs.view.CertificateResponse;... |
package com.example.serpentcs.room_sample.utils;
import android.annotation.SuppressLint;
import android.os.AsyncTask;
import android.support.annotation.NonNull;
import android.support.v4.os.AsyncTaskCompat;
import android.util.Log;
import com.example.serpentcs.room_sample.MainActivity;
import com.example.serpentcs.ro... |
package com.example.vpnservicedemo;
import android.util.Log;
import android.util.SparseArray;
import com.example.tcpip.CommonMethods;
import com.example.tcpip.IPHeader;
import com.example.tcpip.TCPHeader;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetSocketAddress;
import java.n... |
package cn.cczw.sjsb;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import android.content.Context;
import android.content.ContextWrapper;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import ... |
package net.asurovenko.netexam.ui.student_screen;
import java.util.List;
public class NumberResults {
private static final String YES = "YES";
private static final String NO = "NO";
private static final String NO_ANSWER = "NO_ANSWER";
private int correct;
private int incorrect;
private int n... |
package com.tencent.mm.plugin.luckymoney.appbrand.ui.detail;
import android.content.Intent;
import com.tencent.mm.protocal.c.alo;
import com.tencent.mm.protocal.c.ayk;
import com.tencent.mm.protocal.c.bee;
import java.util.List;
public interface b extends com.tencent.mm.plugin.luckymoney.appbrand.ui.b {
void P(In... |
package com.tencent.mm.plugin.appbrand.widget;
import com.tencent.mm.protocal.c.aqn;
import com.tencent.mm.sdk.e.e;
import com.tencent.mm.sdk.platformtools.bi;
public final class i extends com.tencent.mm.sdk.e.i<j> {
public static final String frM = com.tencent.mm.sdk.e.i.a(j.fgt, "LaunchWxaWidgetRespData");
... |
package com.okellosoftwarez.modelfarm;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.content.Context;
import androi... |
package dao.mysql;
import dao.DAOFactory;
import dao.HeroDAO;
public class DAOFactoryImpl extends DAOFactory {
private HeroDAO heroDAO = new HeroDAOImpl();
public HeroDAO getHeroDAO() {
return heroDAO;
}
}
|
/**
* Verschiedene Elemente der View werden durch in diesem package beschriebenen
* Klassen beschrieben.
*/
package othello.ViewElements;
|
package br.com.caelum.vraptor.dao;
import java.util.List;
import org.hibernate.Session;
import org.hibernate.Transaction;
import br.com.caelum.vraptor.infra.CriadorDeSession;
import br.com.caelum.vraptor.ioc.Component;
import br.com.caelum.vraptor.models.Categoria;
import br.com.caelum.vraptor.models.Playlist;
@Com... |
/*
* 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 Exercicio5.Interfaces;
/**
*
* @author Samuel
*/
public interface CoffeeService {
public double getCoffeePrice();
... |
package cn.cnmua.car.controller;
import cn.cnmua.car.domian.*;
import cn.cnmua.car.service.*;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.... |
package dao;
import entity.uyeler;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
public class uyelerDAO extends superDAO {
PreparedStatement pst;
R... |
package studentapp.c_learning.kit.studentapp;
import android.content.Context;
import android.content.Intent;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Linea... |
public interface GasStationUIEventListener {
public void addCarFromUI(int licensePlate,int numOfLiters, boolean wantWash);
public void fillMainFuelPoolFromUI();
public void showStatsFromUI();
public void endWorkDayFromUI();
}
|
package com.tencent.mm.g.a;
public final class de$a {
public boolean bKD = false;
}
|
/*
* 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 di.uniba.it.nlpita.vectors.word2vec;
import di.uniba.it.nlpita.vectors.VectorStoreUtils;
import di.uniba.it.nlpita.vectors.Vec... |
package com.spbsu.flamestream.runtime.edge.api;
import com.spbsu.flamestream.core.data.meta.GlobalTime;
public class Checkpoint {
private final GlobalTime time;
public Checkpoint(GlobalTime time) {
this.time = time;
}
public GlobalTime time() {
return time;
}
} |
package com.stackedtalent.portal.util;
import org.apache.ibatis.type.JdbcType;
import org.apache.ibatis.type.TypeHandler;
import java.sql.*;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
public class UTCDateTypeHandler implements TypeHandler<Date> {
@Override
public void setPa... |
package com.tencent.mm.plugin.nfc.b;
import com.tencent.mm.plugin.report.service.h;
import com.tencent.mm.sdk.platformtools.x;
public final class c {
public static void aa(String str, int i, int i2) {
x.i("MicroMsg.HCEReportManager", "alvinluo reportStartHCEResult appId: %s, result: %d, diff: %d", new Obj... |
package org.milvus.regex.syntax;
import static org.milvus.regex.syntax.RegexType.SEQUENCE;
public class Sequence extends Aggregation {
public Sequence() {
super(SEQUENCE);
}
}
|
package alketon.kadastr.models;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonView;
import javax.persistence.*;
import java.util.Date;
@Entity
@Table
public class Contract {
@Id
@GeneratedValue(strategy = G... |
package com.tt.miniapp.msg;
import com.tt.frontendapiinterface.b;
import com.tt.miniapphost.host.HostDependManager;
import com.tt.option.e.e;
import org.json.JSONException;
import org.json.JSONObject;
public class ApiGetUseDurationCtrl extends b {
public ApiGetUseDurationCtrl(String paramString, int paramI... |
package com.fanbo.kai.zhihu_funny.di.module;
import android.content.Context;
import android.support.v4.app.Fragment;
import com.fanbo.kai.zhihu_funny.di.annotation.PerFragment;
import dagger.Module;
import dagger.Provides;
/**
* Created by Kai on 2017/1/20.
* Email: kaihu1989@gmail.com
*/
@Module
public class F... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import com.avaje.ebean.EbeanServer;
import java.io.File;
import java.io.InputStream;
import java.net.InetSocketAddress;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Map;... |
package com.gtfs.bean;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinC... |
package insert;
import java.io.IOException;
import java.io.InputStream;
import java.sql.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Properties;
public class Test {
public static void main(String[] args) throws IOException, ClassNotFoundException, SQLException, ParseExce... |
package com.vijayjaidewan01vivekrai.searchviewusingrecyclerview_github;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.text.Editable;
import android.text.TextWatcher;
import a... |
package models.arvore;
//sem profundidade
public class No{
private int elemento;
private No rightChildren;
private No leftChildren;
public No(int elemento){
this.elemento = elemento;
}
public int getElemento() {
return this.elemento;
}
public void setElemento(int elemento) {
t... |
package top.zeroyiq.master_help_me.activities;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
/**
* 基础 Activity
* Created by ZeroyiQ on 2017/6/2.
*/
public class BaseActivity extends AppCompa... |
package com.example.demorestrepo;
import java.util.Optional;
import com.example.demorestrepo.entity.Customer;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.query.Param;
public interface CustomerRepository extends CrudRepository<Customer, Long> {
Optional<... |
package javatest;
public class From {
public static void main(String[] args) {
Hometown hometown = new Hometown();//Hometown是類別(class) hometown是物件(object)
System.out.print("名字: " + hometown.getPerson());
System.out.println(" 家鄉: " + hometown.getPlace());
hometown = new Homet... |
package backtracking;
public class LongestPossibleRoute {
// Solution is producing wrong answer
public static void main(String[] args) {
int[][] mat = { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 1, 0, 1, 1, 0, 1, 1, 0, 1 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } };
findPath(mat);
System.out.println(ma... |
package com.tencent.mm.plugin.appbrand.launching;
import android.util.Pair;
import com.tencent.mm.a.g;
import com.tencent.mm.plugin.appbrand.app.e;
import com.tencent.mm.plugin.appbrand.appcache.WxaPkgWrappingInfo;
import com.tencent.mm.plugin.appbrand.appcache.a.d.h;
import com.tencent.mm.plugin.appbrand.appcache.al;... |
package org.lab409.entity;
import java.sql.Timestamp;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* Created by jiao on 2018/10/16
*/
@Data
public class Article {
private Integer publish_id=0; //发布编号,暂时为0
private Integer publish_type_id=0; //发布类型编号,0位
private Int... |
package baekjoon;
public class Function {
public static void main(String_Test[] args) {
// int[] a = {1,2,3,4,5,6,7,8,9,10};
// System.out.println(Function.sum(a));
//
// Scanner sc = new Scanner(System.in);
// method(sc.nextInt());
selfNum(10000);
}
//15596번
sta... |
/*
* 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 model;
/**
*
* @author bynan
*/
public class MedocModel {
private int id;
private String libel;
private String ... |
package com.rc.panels;
import com.rc.app.Launcher;
import com.rc.res.Colors;
import com.rc.components.GBC;
import com.rc.utils.FontUtil;
import com.rc.utils.IconUtil;
import javax.swing.*;
import java.awt.*;
import static com.rc.app.Launcher.APP_NAME;
/**
* Created by song on 26/06/2017.
*
* 设置 -> 关于
*/
public ... |
package com.ece496.assignments;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.app.TimePickerDialog;
import android.content.Intent;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.format.DateFor... |
package dsp.api;
import java.util.List;
import net.minecraft.item.ItemStack;
public interface IHeldItemModule extends IModule{
public void addItemInfo(ItemStack itemstack, List<String> left, List<String> right, String pagename);
}
|
package com.example.HotelManagment.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.example.HotelManagment.entity.UserProfile;
public interface UserRepository extends JpaRepository<UserProfile, Long> {
}
|
package c11;
public class a7
{
public static void main(String[] args)
{
// 객체 생성
Point p1 = new Point(0, 0);
Point p2 = new Point(3, 4);
// 거리 계산
double dist = Point.distance(p1, p2);
// 결과 출력
System.out.printf("두 점 A%s, B%s 사이의 거리: %.2f", p1.toStr(), p2.toStr(), dist);
}
}
class Point
{
/* 1. 필드를... |
package fr.projetcookie.boussole.providers;
import android.location.Location;
public abstract class BaloonPositionProvider extends Thread {
int refresh_time;
public BaloonPositionProvider(int t) {
refresh_time = t;
}
public abstract float stahp();
abstract public Location getLocation();
}
|
/**
* 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 com.shopify.mapper;
import java.util.List;
import java.util.Map;
import org.apache.ibatis.annotations.Mapper;
import com.shopify.api.pantos.PantosDeliveryData;
import com.shopify.api.pantos.PantosTrackingData;
import com.shopify.shipment.popup.ShipmentPopupData;
@Mapper
public interface PantosMapper {
pu... |
package Kodluyoruz_HomeWork_AbdAlrahimZakaria.Week3_AirplaneSystem.Concrete_Classes;
import Kodluyoruz_HomeWork_AbdAlrahimZakaria.Week3_AirplaneSystem.Abstract_Classes.FlightTicketSystem;
public class PegasusAirLines extends FlightTicketSystem {
public static void main(String[] args) {
FlightTicketSystem... |
package com.hd.ngandroidhttpfiddler.bean;
import android.graphics.drawable.Drawable;
public class QsApp {
private Drawable icon;
private String name;
private String packgeName;
public QsApp(Drawable icon, String name, String packgeName) {
this.icon = icon;
this.name = name;
th... |
package Manufacturing.ProductLine.Line;
import Manufacturing.CanEntity.Can;
import Manufacturing.Ingredient.ConcreteIngredient.Peach;
import Manufacturing.Ingredient.Ingredient;
import Manufacturing.Machine.CanTreatmentMachine.GlassCanProducingMachine;
import Manufacturing.Machine.GeneralMachine.PeachFilterMachine;
im... |
package net.doepner.ws.hibernate;
import net.doepner.ws.model.de.DeutschesVerb;
import net.doepner.ws.model.de.Lautwechsel;
import org.hibernate.Transaction;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import static org.testng.AssertJUnit.assertEquals;
import org.testng.annotations.Test;
/**
*... |
package com.company;
import java.util.Locale;
import java.util.Map;
import java.util.Scanner;
public class Main {
static Scanner scanner = new Scanner(System.in);
static PhoneBook phoneBook = new PhoneBook();
static int numberOfContacts = 0;
private static void displayMenu() {
System.out.prin... |
package com.example.firstapp;
public class PlayerConfig {
PlayerConfig()
{
}
public static final String API_KEY="AIzaSyANCg46QgvODDQfYKbC_94auYKoYWrdlgI";
}
|
public class e
{
e()
{
System.out.print("hello 2");
}
} |
package com.example.mostafa.slaamonlineshopping;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.os.Bundle;
import android.widget.Toast;
/**
* Created by mostafa on 12/16/2017.
*/
public class myLocationListener implements LocationListener ... |
package chess;
import java.io.IOException;
/**
*Driver File for chess game
* @author Jason Hunt, Timothy Kinsey
* @version 1.0
* @since 2019-03-01
*/
public class Chess {
//main method to start our game and get it running
/**
* Main method to run chess game
* @param args takes no actual argument... |
package com.hehe.service;
import com.hehe.entity.User;
import com.hehe.tools.BaseService;
public interface UserService extends BaseService<User> {
}
|
/*
* DirectedEdge
*
* Author: Gilang Kusuma Jati (gilang.k@samsung.com), SRIN.
*
*/
package datastructurefromlib;
public class DirectedEdge implements Comparable<DirectedEdge>
{
private final int from;
private final int to;
private final double weight;
// Construct a directed edge from vertex s... |
package edunova;
import javax.swing.JOptionPane;
public class Primjer01 {
public static void main(String[] args) {
//učitaj broj
while(true) {
try {
int i = Integer.parseInt(JOptionPane.showInputDialog("Unesi broj"));
break;
} catch (Exception e) {
JOptionPan... |
package com.tencent.mm.plugin.shake.d.a;
import com.tencent.mm.model.au;
import com.tencent.mm.model.c;
import com.tencent.mm.platformtools.ab;
import com.tencent.mm.plugin.shake.d.b.a;
import com.tencent.mm.protocal.c.avq;
import com.tencent.mm.protocal.c.bmo;
import com.tencent.mm.sdk.platformtools.x;
import java.io... |
package com.mentonica.subcraft;
import com.mentonica.subcraft.get.data.Variables;
import com.mentonica.subcraft.get.parser.Parse;
import com.mentonica.subcraft.get.site.Get;
import com.mentonica.subcraft.get.site.Lines;
import com.mentonica.subcraft.players.Insert;
import com.mentonica.subcraft.reader.Read;
import com... |
/*
* Created on Jan 19, 2011
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package it.usi.xframe.xas.bfimpl.sms.providers.virtual;
import it.usi.xframe.xas.bfimpl.a2psms.dataobject.InternalSmsRequest;
import it.usi.xframe.xas.bf... |
package com.zhonghuilv.shouyin.requestForm;
import com.zhonghuilv.shouyin.pojo.OrderBack;
import com.zhonghuilv.shouyin.pojo.OrderBackDetails;
import lombok.Data;
import java.util.List;
@Data
public class OrderBackForm {
private OrderBack orderBack;
private List<OrderBackDetails> orderBackDetailsList;
}
|
package com.example.petsitting;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widg... |
/*
* [y] hybris Platform
*
* Copyright (c) 2000-2016 hybris AG
* All rights reserved.
*
* This software is the confidential and proprietary information of hybris
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* li... |
package com.mideas.rpg.v2.game.spell.list;
import com.mideas.rpg.v2.Sprites;
import com.mideas.rpg.v2.game.spell.Spell;
public class Corruption extends Spell {
private static int cd;
public Corruption() {
super(2000, 2000, 1000, 0, 0, 0, 2, 0, 901);
name = "Corruption";
sprite = Sprites.spell_corruption;
... |
package com.smxknife.jvm.demo09;
public class MonitorDemo {
public static void main(String[] args) {
MonitorDemo monitor = new MonitorDemo();
monitor.test("hello");
}
public void test(String param) {
synchronized (param) {
System.out.println(param);
}
}
}
|
package com.ibm.jikesbt;
import com.ibm.jikesbt.BT_Repository.LoadLocation;
/*
* Licensed Material - Property of IBM
* (C) Copyright IBM Corp. 1998, 2003
* All rights reserved
*/
/**
Represents an opc_invokevirtual instruction.
Typically created by one of the {@link BT_Ins#make} methods.
* @aut... |
/* Author name: Tiffany White
This is a budget calculator
Created date: September 22, 2015
Last modified date: October 1, 2015
*/
// This line imports the Scanner class to the document
import java.util.Scanner;
public class P1A5_White_3663976
{
public static void main(String[] args)
{
// This line declares a scan... |
package uk.gov.ons.ctp.response.action.export.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import uk.gov.ons.ctp.response.action.export.domain.TemplateExpression;
/** JPA repository for Template entities */
@Repository
public interface Tem... |
package com.javarush.task.task36.task3606;
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;... |
package com.pronatation.Child;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import org.json.JSONObject;
import com.opensymphony.xwork2.ActionSupport;
public class ChildRegistrationAction extends ActionSupport... |
package repositories;
import java.util.Collection;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;
import domain.Quolet;
@Repository
//TODO CAMBIO CONTROL: cambiar nombre nueva clase
public interfa... |
package ru.Makivay.sandbox;
import com.google.common.collect.HashMultiset;
import com.google.common.collect.Lists;
import com.google.common.collect.Multiset;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import javax.annotation.Nonnull;
import java.util.*;
import java.util.stream.IntStream;
import ... |
package com.resolutech.services;
import com.resolutech.api.v1.mapper.VendorMapper;
import com.resolutech.domain.Vendor;
import com.resolutech.model.ObjectFactory;
import com.resolutech.model.VendorDTO;
import com.resolutech.repositories.VendorRepository;
import org.junit.Before;
import org.junit.Test;
import org.mocki... |
/**
* DNet eBusiness Suite
* Copyright: 2013 Nan21 Electronics SRL. All rights reserved.
* Use is subject to license terms.
*/
package seava.ad.security.authoriz;
import java.util.List;
import javax.persistence.TypedQuery;
import seava.j4e.api.exceptions.NotAuthorizedRequestException;
import seava.j4e.api.secur... |
package com.codenamerevy.tutorialmod.blocks;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
public class RubyBlock extends BlockBase
{
public RubyBlock(String name, Material material)
{
super(name, material);
setSoundType(SoundType.METAL); //Sets sound when wal... |
package com.beiyelin.common.document;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by newmann on 2017-09-12.
*/
@XmlRootElement(name = "powerpoint")
public class PowerPointInfo extends OfficeInfo {
private int numberOfSlides;
@XmlElement
pu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.