text stringlengths 10 2.72M |
|---|
package com.tencent.f;
public interface c {
Object cHn();
}
|
package exam_module5.demo.repository;
import exam_module5.demo.model.Car;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
public interface CarRepo extends JpaRepository<Car, Integer> {
List<Car> findByNameContaining(String name);
}
|
package com.immotor.bluetoothadvertiser.webAPI;
/**
* Created by ZhengQingQing on 16/4/9.
*/
public class Passcode {
private Object user_id;
private String phone;
private int passcode;
private String expired;
private boolean active;
private String id;
private String updated_at;
privat... |
/*
* created 31.10.2005
*
* 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 com.goldgov.dygl.module.partyMemberDuty.dutybranch.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
import com.goldgov.dygl.module.partyMemb... |
package com.google.cacheserver;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.concurrent.ExecutorService;
import jav... |
package ioccontainer.materials;
import ioccontainer.CreateOnTheFly;
public class DiamondDependencyBean {
@CreateOnTheFly
private DiamondDependency dependency;
@CreateOnTheFly
private DiamondDependency anotherDependency;
public DiamondDependency getDependency() {
return dependency;
}
... |
/*
* Copyright (C) 2009 - 2015 Marko Salmela, http://fuusio.org
*
* 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 ... |
package playground.ds;
import playground.ds.interfaces.VectorAPI;
import java.util.Arrays;
public class Vector implements VectorAPI {
int[] arr;
int capacity;
int length;
final int MIN_CAPACITY = 16;
public Vector() {
this.capacity = MIN_CAPACITY;
this.arr = new int[capacity];
... |
/*******************************************************************************
* Copyright 2020 Grégoire Martinetti
*
* 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://ww... |
package com.google.firebase.example.appindexing;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import com.google.android.gms.tasks.Task;
import com.google.firebase.appindexing.Action;
import com.google.firebase.appindexing.FirebaseAppIndex;
import com.google.firebase.appindexing.FirebaseU... |
package za.co.edusys.domain;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.stereotype.Component;
import za.co.edusys.domain.model.*;
import za.co.edusys.domain.model.Clas... |
package com.salesforce.cdp.queryservice.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class QueryConfigResponse {
String queryengine;
}
|
import server.Billboard;
import java.io.*;
public class Test {
public static void main(String args[]) throws IOException, ClassNotFoundException {
}
}
|
package com.df.parcial_uno;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Parcelable;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView... |
package com.codezjsos.log.entity;
import org.hibernate.annotations.GenericGenerator;
import java.util.Date;
import javax.persistence.*;
@Entity
@Table(name="tracklog_entity")
public class TrackLogEntity extends TrackBase{
private String optiontype;
private String createid;
private String classname;
public... |
package operations.graphoperations;
import graphana.UserInterface;
import graphana.graphs.GraphLibrary;
import graphana.operationsystem.GraphOperation;
import graphana.operationsystem.OperationArguments;
import graphana.operationsystem.OperationDescFile;
import graphana.operationsystem.OperationGroup;
import... |
package com.tencent.mm.plugin.honey_pay.ui;
import android.content.Intent;
import android.os.Bundle;
import android.text.SpannableString;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.tencent.mm.ab.l;
import com.tencent.mm.model.q;
import com.tencent.mm... |
package ru.krasview.kvlib.widget.lists;
import android.content.Context;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import java.util.HashMap;
import java.util.Map;
import ru.krasview.kvlib.adapter.LoadDataToGUITask;
import ru.krasview.kvlib.indep.Parser;
import ru.krasview.kvl... |
package com.dominion.prog2.modules;
import com.dominion.prog2.Driver;
import com.dominion.prog2.game.Player;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import... |
package com.mobica.rnd.parking.parkingbetests.support;
import com.mobica.rnd.parking.parkingbetests.support.extractors.IDataExtractor;
import com.mobica.rnd.parking.parkingbetests.support.extractors.RESTExtractor;
import org.json.simple.JSONObject;
/**
* Created by int_eaja on 2017-08-04.
*/
public class TestSuiteE... |
/*
* Copyright 2018 original 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 applicable law or agreed to... |
package pe.gob.trabajo.repository;
import pe.gob.trabajo.domain.Oficina;
import org.springframework.stereotype.Repository;
import org.springframework.data.jpa.repository.*;
import java.util.List;
/**
* Spring Data JPA repository for the Oficina entity.
*/
@SuppressWarnings("unused")
@Repository
public interface O... |
package test3;
public class Hero {
public Hero() {
System.out.println("Hero");
}
}
|
package com.tencent.mm.plugin.brandservice.ui.b;
import com.tencent.mm.protocal.c.avq;
public final class b {
public static String avq() {
avq Qa = com.tencent.mm.an.b.Qa();
if (Qa == null || Qa.rsp == null || Qa.rYj != 0 || !com.tencent.mm.an.b.PY()) {
return null;
}
r... |
package com.mrlittlenew.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DemoController {
protected static final Logger logger = LoggerFactory... |
package com.tt.miniapp.locate;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.text.TextUtils;
import com.tt.miniapp.maplocate.TMALocation;
import com.tt.miniapp.permission.BrandPermissionUtils;
import com.tt.miniapp.process.bridge.InnerHostProcessBridge;
import ... |
package exercise1;
import javax.swing.JFrame;
public class LabelTest
{
public static void main(String[] args)
{
StudentInfos studentInfos = new StudentInfos();
studentInfos.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
studentInfos.setSize(800, 450);
studentInfos.setVisible(true);
}... |
package del.group10.java_ee.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import del.group10.java_ee.model.Transaksi;
public interface TransaksiRepository extends JpaRepository<Transaksi, Integer>{
}
|
package com.example.network;
import com.example.network.task.GetAddressTask;
import com.example.network.task.GetAddressTask.OnAddressListener;
import com.example.network.util.DateUtil;
import com.example.network.util.SwitchUtil;
import android.Manifest;
import android.annotation.SuppressLint;
import android.content.C... |
package com.manju.service;
import java.rmi.RemoteException;
import javax.xml.rpc.ServiceException;
public class clienttest {
public static void main(String[] args) {
CalculatorServiceImplServiceLocator loc= new CalculatorServiceImplServiceLocator();
try {
CalculatorServiceImpl cal=loc.getCalculatorServiceImpl();... |
package tw.org.iii.java;
import tw.org.iii.myclass.TWId;
public class Brad38 {
public static void main(String[] args) {
if (TWId.checkID("712345678Y")) {
System.out.println("OK");
}else {
System.out.println("XX");
}
System.out.println("----------------");
}
}
|
package com.wshoto.user.anyong.ui.activity;
import android.app.AlertDialog;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
import com.google.gson.Gson;
import com.jakewharton.rxbinding.view.RxView;
import com.wshoto.user.an... |
package com.ym.lockdemo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
... |
/*
* [y] hybris Platform
*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with... |
package cn.gavinliu.notificationbox.ui.main;
import android.content.pm.PackageManager;
import java.util.List;
import cn.gavinliu.notificationbox.model.AppInfo;
import cn.gavinliu.notificationbox.ui.BasePresenter;
import cn.gavinliu.notificationbox.ui.BaseView;
/**
* Created by Gavin on 2016/10/11.
*/
public inte... |
package alwrite;
/*
* @author Xingqilin
*
*/
import java.util.Arrays;
import java.util.LinkedList;
public class MyAlAchieve {
/**
* 懒构造
* final属性,默认长度,空object数组,Object元素数组
* 私有属性,元素个数size
* 方法:
* 有长度,无长度构造
* 添加,位置添加,触发扩容机制
* 修改
* 下标删除,条件删除
* 查找 constant
* size(... |
láthatóságai módosítószo
- public
- private
- nincs semmi: félnyilvános (package-private, csomagszintű) láthatóság
ugyanabban a csomagban elérhető a tag
csomag: logikai összetartozás, fizikai összetartozás a félnyilvános tagok mentén
alcsomagra már nem ad hozzáférést (bár logikai kapcsolat ott is fennáll)
- protect... |
public class DogExamples {
public static void main(String[] args) {
Dog maya = new Dog(67);
Dog humphrey = new Dog(69);
maya.size = 15;
System.out.printf("%d\n", maya.size);
maya.makeNoise();
maya.name = "Maya";
System.out.printf("%s\n", maya.name);
Do... |
package org.tecsup.tecunity_api;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TecunityApiApplication {
public static void main(String[] args) {
SpringApplication.run(TecunityApiApplication.class... |
package org.apache.commons.net.examples.ntp;
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import org.apache.commons.net.ntp.NtpUtils;
import org.apache.commons.net.ntp.NtpV3Impl;
import org.apache.commons.net.ntp.TimeStamp;
public class SimpleNTPServer implements Runnabl... |
package com.openkm.util.metadata;
import java.util.Calendar;
/**
* See also @org.apache.poi.hpsf.SummaryInformation
*
* @author pavila
*/
public class OfficeMetadata {
private String title;
private String subject;
private String author;
private String lastAuthor;
private String keywords;
private Stri... |
package negocios;
import java.time.*;
import java.util.List;
import beans.Cliente;
import beans.Fornecedor;
import beans.Funcionario;
import beans.MateriaPrima;
import beans.Produto;
import dados.RepositorioCliente;
import dados.RepositorioFornecedor;
import dados.RepositorioFuncionario;
import dados.RepositorioMateri... |
/* 1: */ package com.kaldin.test.executetest.dto;
/* 2: */
/* 3: */ public class TemporaryExamInfoDTO
/* 4: */ {
/* 5: */ private int tempInfoid;
/* 6: */ private int userid;
/* 7: */ private String testid;
/* 8: */ private int examid;
/* 9: */ private int startime;
/* 10:... |
package net.javango.carcare.widget;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.widget.RemoteViews;
import android.widget.RemoteViewsService;
import net.javango.carcare.R;
import net.javango.carcare.ServiceListActivity;
import net.javango.carcare.model.AppData... |
package com.example.opencvpractice.datamodel;
import java.util.ArrayList;
import java.util.List;
public class ChapterUtils implements AppConstants {
public static List<ItemDto> getChapters() {
List<ItemDto> items = new ArrayList<>();
ItemDto item1 = new ItemDto(1, CHAPTER_1TH, "OpenCV Fo... |
package no.hiof.larseknu.jsonskriving.model;
public class Superhelt {
private String navn;
private String alterEgo;
public Superhelt(String navn, String alterEgo) {
this.navn = navn;
this.alterEgo = alterEgo;
}
public String getNavn() {
return navn;
}
... |
package matth.dungeon.Utility;
import android.content.Context;
import java.util.ArrayList;
import matth.dungeon.GameUI.Inventory;
import matth.dungeon.GameUI.LevelTile;
public class LevelTileGenerationUtility {
private MainUtility mainUtility;
private ArrayList<ArrayList<LevelTile>> levelMap = new ArrayLis... |
package entities.fields.ownable;
import java.util.Properties;
import desktop_resources.GUI;
import entities.fields.abstracts.Field;
import entities.fields.abstracts.Ownable;
import game.Account;
import game.Player;
public class Territory extends Ownable
{
private int rent[] = new int [6];
private S... |
public class Frame {
private int address;
private boolean refBit = false;
public Frame(int addr) {
this.address = addr;
}
public Frame(int addr, boolean ref) {
this.address = addr;
this.refBit = ref;
}
public void setSecondChance() {
this.refBit = true;
}... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package validator;
import domain.Range;
import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;
/**
*
* @author Przemysła... |
package com.wiipu.mall.activity;
import com.wiipu.mall.R;
import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import andro... |
package com.cricmania.models;
import java.util.Date;
public class Base {
@javax.persistence.Id
protected String id;
protected Date createdOn = new Date();
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreatedOn() {
return createdOn;
}
public voi... |
package genscript.defaultops.math;
import genscript.execution.ExecuterTreeNodeEager;
import genscript.parse.IndexReader;
import scriptinterface.defaulttypes.GInteger;
import scriptinterface.defaulttypes.GVector;
import scriptinterface.execution.ExecutionScope;
import scriptinterface.execution.returnvalues.Execu... |
package ExerDay32;
import java.util.*;
public class Count2 {
public static void main(String[] args) {
System.out.println(countNumberOf2s(1000));
}
public static int countNumberOf2s(int n) {
int count = 0;
for(int i = 0;i < n+1;i++){
for(int j = i;j > 0;j /= 10){
... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.caisa.planilla.entity;
import java.io.Serializable;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
impor... |
package com.example.demo.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.example.demo.entity.Course;
import com.example.demo.entity.Student;
import com.example.demo.repository.CourseRepository;
import com.ex... |
package com.example.lastminute.Trips;
import android.app.usage.NetworkStats;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.Button;
im... |
/*
* Copyright 2020. Huawei Technologies Co., Ltd. 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 com.empwagepackages.test;
import com.empwagepackages.model.EmpWagePackage;
public class EmpWagePackageTest{
public static void main(String[] arg){
EmpWagePackage emp=new EmpWagePackage();
double EmpCheck=Math.floor(Math.random()*10)%2;
System.out.println(emp.DisplayMessage(EmpCheck));
}
}
|
package com.ttan.linkedList;
/**
* @Description:
* @author ttan
* @time 2019年12月24日 下午5:52:45
*/
public class DeleteDuplication {
public static ListNode deleteDuplication(ListNode pHead) {
if (pHead == null) {
return null;
}
// 备用头节点,因为头节点可能删除
ListNode firstNode = new ListNode(-1);
firstNode.next =... |
package com.shopguide.webservice;
public class GoogleServices {
}
|
package net.crunchdroid.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.hibernate.annotations.OnDelete;
import org.hibernate.annotations.OnDeleteAction;
import javax.persistence.*;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Entity
public class EntraineurDes... |
package com.yida.design.command.generator;
/**
*********************
* 接收者角色
*
* @author yangke
* @version 1.0
* @created 2018年5月12日 上午10:51:04
***********************
*/
public abstract class AbstractReceiver {
// 定义每个接收者都必须完成的业务
public abstract void doSomething();
}
|
package com.prokarma.reference.architecture.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Classification {
@SerializedName("primary")
@Expose
public Boolean primary;
@SerializedName("segment")
@Expose
public Segment segment;
... |
package com.quizcore.quizapp.model.repository;
import com.quizcore.quizapp.model.entity.MediaContent;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import java.util.UUID;
@Repository
public interface MediaContentRepository extends CrudRepository<MediaCon... |
package ua.lviv.iot.uklon.domain;
import javax.persistence.*;
import java.math.BigDecimal;
import java.util.Objects;
@Entity
@Table(name = "passenger")
public class Passenger {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private Integer id;
@Column(name = "name")... |
package com.cz.android.sample.tool;
import android.content.Context;
import java.util.Map;
/**
* @author Created by cz
* @date 2020/8/6 12:03 PM
* @email bingo110@126.com
*/
public interface ComponentAnalyzer {
void registerComponent(Context context);
boolean applyInstance(Class<?> clazz);
void ana... |
package boletin19_2;
import java.util.Arrays;
import javax.swing.JOptionPane;
public class Programacion {
int[] notas = new int[3];
private int aprobados = 0, suspensos = 0;
// int [] numAprobados = new int[notas.length]; (tambien valdria haciendolo con arrays)
// int [] numSuspensos = new in... |
package com.betatest.canalkidsbeta.alarm;
import java.util.Date;
import android.app.IntentService;
import android.content.Intent;
import android.util.Log;
import com.betatest.canalkidsbeta.bean.ChannelContentsResponseParcel;
import com.betatest.canalkidsbeta.interfaces.AsyncTaskInterface;
import com.betatest.canalki... |
package com.theincorrectclock.bsj;
class Pair<E1, E2> {
private E1 first;
private E2 second;
static <E1, E2> Pair<E1, E2> pair(E1 first, E2 second) {
return new Pair<>(first, second);
}
private Pair(E1 first, E2 second) {
this.first = first;
this.second = second;
}
... |
package lesson29.Ex1;
public class Bird extends Animal {
private String color;
private String bestFood; //thức ăn chính
private float wingspan; //sải cánh
public Bird() {
}
public Bird(String name, String species, float height, float weight) {
super(name, species, height, weight);
... |
package com.clienteapp.demo.service;
import com.clienteapp.demo.entity.Ciudad;
import java.util.List;
public interface ICiudadService {
List<Ciudad> listarCiudades();
public void guardarCiudad(Ciudad ciudad);
}
|
package com.fleet.initializr.service.impl;
import com.fleet.initializr.entity.Application;
import org.springframework.stereotype.Service;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
/**
* @author April Han
*/
@Service
public class PomGenerator extends BaseGenerator {
public void gener... |
package ec.com.yacare.y4all.asynctask.ws;
import android.os.AsyncTask;
import android.provider.Settings;
import android.util.Log;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPos... |
package p9;
/**
* A Direction class to keep track of what direction the mob is facing.
* @author Matthew Eugene Swanson
*
*/
public class Direction {
public static final int UP = 0;
public static final int DOWN = 1;
public static final int LEFT = 2;
public static final int RIGHT = 3;
public int direction =... |
/**
* DistributionBar.java (DistributionBar)
*
* Copyright 2012 Vaadin Ltd, Sami Viitanen <alump@vaadin.org>
*
* 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.or... |
package com.level01.ΊρΉΠΑφ΅΅;
import java.util.Arrays;
public class MTest {
public static void main(String[] args) {
int n = 6;
int [] arr1 = {46, 33, 33 ,22, 31, 50};
int [] arr2 = {27 ,56, 19, 14, 14, 10};
Soulution solution = new Soulution();
System.out.println(Arrays.toString(solution.solution(n,... |
package sukerPkg;
import java.awt.Desktop;
import java.io.File;
import java.io.IOException;
import java.util.List;
import javax.swing.ButtonGroup;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.FocusListener;
import org.eclipse.swt.events.SelectionEven... |
package com.FCI.SWE.Models;
import java.util.ArrayList;
import com.google.appengine.api.datastore.DatastoreService;
import com.google.appengine.api.datastore.DatastoreServiceFactory;
import com.google.appengine.api.datastore.Entity;
import com.google.appengine.api.datastore.PreparedQuery;
import com.google.appengine.... |
package aboli.musicbee;
import android.media.MediaPlayer;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.CheckBox;
import android.widget.TextView;
import a... |
package com.lrs.admin.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import com.lrs.admin.controller.base.BaseController;
import com.lrs.adm... |
package com.kdp.wanandroidclient.ui.tree;
import com.kdp.wanandroidclient.bean.Tree;
import com.kdp.wanandroidclient.net.callback.RxObserver;
import com.kdp.wanandroidclient.ui.core.model.impl.TreeModel;
import com.kdp.wanandroidclient.ui.core.presenter.BasePresenter;
import java.util.List;
/**
* 知识体系
* author: 康栋普... |
package com.holmes.tree;
import org.junit.Test;
public class BinaryTreeTest {
@Test
public void createBinary() {
BinaryTree<String> tree = new BinaryTree<String>();
BinaryTreeNode root = new BinaryTreeNode<String>("A");
tree.setRoot(root);
BinaryTreeNode left = tree.insertCh... |
package uns.ac.rs.hostplatserver.constant;
import lombok.experimental.UtilityClass;
import java.time.ZoneId;
@UtilityClass
public class DateTimeConstant {
public final ZoneId SYSTEM_TIMEZONE = ZoneId.of("Europe/Belgrade");
}
|
package edu.cecar.controlador;
import edu.cecar.modelo.Dato;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import javax.swing.JOptionPane;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.... |
package com.tdd.sis.model;
import java.io.IOException;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author teyyub
*/
public class StudentDirectoryTest {
private StudentDirectory dir... |
package chapter4;
/**
* @author Fulai Zhang
* @since 2018/2/1.
*/
public class TestVertxCluster {
}
|
package com.beiyelin.account.security;
import java.lang.annotation.*;
/**
* @Description: AccessRight的容器类,使用java8的重复注解
* @Author: newmann
* @Date: Created in 9:42 2018-01-20
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AccessPermissions {
AccessPermission[] ... |
//package support.yz.data.mvc.service.inter;
//
//import java.io.File;
//import java.util.List;
//
//import com.yaoqianshu.data.model.domain.busi.AccInfoModel;
//import com.yaoqianshu.developer.model.TextDataPreview;
//
//public interface ITextDataSourceService {
//
// /**
// * 文件上传到项目本地
// * @param file
... |
/*
* 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 br.cwi.crescer.repositorio;
import br.cwi.crescer.entity.Pessoa;
import java.util.List;
/**
*
* @author Érico de Souza Loew... |
package com.itranswarp.jxrest;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* Route by regular express.
*
... |
package io.fab.connector.configurations;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import io.fab.connector.ifood.IFoodApiAccessTokenStorage;
/**
* Configuração do armazenamento, em memória, do token de acesso à API do iFood.
*
* @author fabio... |
package com.example.ComicToon.Models.RequestResponseModels;
import java.util.ArrayList;
import com.example.ComicToon.Models.ComicSeriesModel;
public class ViewSubscriptionsResult {
private ArrayList<ComicSeriesModel> series;
/**
* @return the series
*/
public ArrayList<ComicSeriesModel> getSer... |
package com.vaescode.di.autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class Square implements Figure {
/*También es posible declarar una propiedad con un valor por default en caso de que el valor no
* sea declarado en el a... |
/******************************************************
Cours: LOG121
Projet: Framework.TP3
Nom du fichier: Joueur.java
Date créé: 2016-03-07
*******************************************************
Historique des modifications
*******************************************************
*@author Vincent Leclerc(LECV0706940... |
package com.cimcssc.chaojilanling.entity.enterprise;
/**
* Created by cimcitech on 2017/4/25.
*/
/**
* 企业性质
*/
public class EnterpriseNatureVo {
private String daAdd;
private String daUpdate;
private int dictionaryId;
private String dictionaryText;
private String dictionaryType;
private S... |
package com.zhouyi.business.core.model;
import java.io.Serializable;
import java.util.Date;
/**
* 文章内容
*
*
*/
public class ArticleInfo implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private Long id;
private String title;
private Date updateTime;
private Date crea... |
package com.tencent.mm.plugin.h.a.b;
import com.tencent.mm.plugin.exdevice.j.b;
import com.tencent.mm.sdk.platformtools.x;
class f$2 implements Runnable {
final /* synthetic */ f hgG;
f$2(f fVar) {
this.hgG = fVar;
}
public final void run() {
x.e("MicroMsg.exdevice.BluetoothLESimpleS... |
package fr.eseo.poo.projet.artiste.modele;
import static org.junit.Assert.assertEquals;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.clas... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.