text
stringlengths
10
2.72M
package boletin75; /** * * @author mgonzalezlorenzo */ public class Boletin75 { public static void main(String[] args) { int num1, num2, num3; Comparacion obx=new Comparacion(); num1=obx.pedirNumero(); num2=obx.pedirNumero(); num3=obx.pedirNumero(); o...
package com.example.sypark9646.item20.interface_default_method; public class Cat implements Animal { @Override public String jump() { return "cat is jumping"; } }
package com.example.hyunyoungpark.imagedownloadasynctask; import android.content.Context; import android.os.AsyncTask; import android.os.Environment; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapte...
package com.pdd.pop.sdk.http.api.request; import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty; import com.pdd.pop.sdk.http.api.response.PddPromotionGoodsCouponListGetResponse; import com.pdd.pop.sdk.http.HttpMethod; import com.pdd.pop.sdk.http.PopBaseHttpRequest; import com.pdd.pop.sdk.common.util.JsonUti...
package com.apress.prospring.ch3; import com.apress.prospring.ch3.DemoBean; import com.apress.prospring.ch3.MyHelper; //This class uses Method Injection for getting instance of MyHelper public abstract class AbstractLookupDemoBean implements DemoBean { public abstract MyHelper getMyHelper(); public void someOpera...
package servlet; import java.io.IOException; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; import javax.servlet.ServletException; import domain.Customer; import domain.Order; import domain.Receptionist; import domain.Room; import domain.TimeRange; i...
package productManager.controller; import net.minidev.json.JSONObject; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.orm.jpa.AutoC...
package scenario_villa; import java.io.Serializable; import core.Ambiente; import core.CoreInputControl; import core.Stanza; @SuppressWarnings("serial") class CorridoioQuadriNord extends Ambiente implements Stanza, Serializable { protected CorridoioQuadriNord() { this.nomeAmbiente = "Corridoio dei Quadri (Lato No...
package com.heihei.login; import android.os.Bundle; import com.base.host.ActivityManager; import com.base.host.BaseActivity; import com.heihei.fragment.login.GuideFragment; public class LoginActivity extends BaseActivity { @Override protected void onCreate(Bundle arg0) { super.onCreate(arg0); ActivityManager....
package general.store; import general.GeneralEvent; import general.EventQueue; import general.State; public class PickEvent extends GeneralEvent { // this event might not need the event que? public PickEvent(EventQueue q) { // generate time here somehow this.occurenceTime = -1; // TODO ...
package com.pwq.mavenT; /** * Created by BF100500 on 2017/7/12. */ public class StringBuilderTest { public static void main(String[] args) { StringBuilder MyStringBuilder = new StringBuilder("pwqagwt"); MyStringBuilder.append("day"); System.out.println(MyStringBuilder); MyStringBu...
package com.mycompany.intregavellinguagemprogramacao; import java.util.Random; import java.util.Timer; import java.util.TimerTask; /** * * @author Cesar */ public class Monitoramento extends javax.swing.JFrame { public Monitoramento() { initComponents(); } @SuppressWarnings("unchecked") /...
package com.ats.communication_admin.activity; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.DefaultIt...
/** * Kaydee Gilson * Final Project * SimpleHoldPlayer Class: This class holds the auto isRolling method that uses the best hold value found in the simulations class. */ public class SimpleHoldPlayer extends PigPlayer { //instance data private int holdValue; public static final int HOLDVALUE = 25; //...
package objetos.aeronaves; import objetos.aeronaves.civiles.*; import objetos.aeronaves.enemigos.*; /* * Factory de las aeronaves no controladas */ public class FabricaAeronaves { public FabricaAeronaves() { } public static Caza crearCaza() { return new Caza(); } public static GrupoCaza crearGrupoCaza() {...
package edu.ufl.cise.logParser; import java.sql.SQLException; public class QueryLog { /** * @param args * @throws SQLException */ public static void main(String[] args) throws SQLException { // TODO Auto-generated method stub ConnectionManager cm = new ConnectionManager(); cm.whereSenderOrReceiver("Su...
package utils; /** * author {yhh1056} * Create by {2020/07/13} */ public class NameIndexOutOfBoundsExceptionHandler extends Exception { public NameIndexOutOfBoundsExceptionHandler(String message) { super(message); } }
package net.imglib2.trainable_segmention.pixel_feature.filter.dog2; import net.imglib2.FinalInterval; import net.imglib2.RandomAccessible; import net.imglib2.RandomAccessibleInterval; import net.imglib2.test.ImgLib2Assert; import net.imglib2.trainable_segmention.Utils; import net.imglib2.trainable_segmention.pixel_fe...
import java.awt.Dimension; import java.awt.Toolkit; import java.awt.Window; import java.util.ArrayList; import javax.swing.JOptionPane; import javax.swing.JTable; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open th...
import java.io.Serializable; import java.util.Date; public class Usuario implements Serializable { private static final long serialVersionUID = 1L; private String nombre; private String apellido; private Date fechaNacimiento; private int puntos; public Usuario(String nombre, String apellido, Date f...
package ex15_interface_extends; public class SmartPhone extends Phone implements Computable { // Computable의 palyApp()을 반드시 오버라이드 해야합니다. @Override public void playApp() { System.out.println("앱을 실행한다."); } }
package com.ms.module.wechat.clear.activity.clear; import android.content.Intent; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import com.bumptech.glide.Glide; import com.chad.library.adapter.base.entity.node.BaseNode; import com.chad.library.adapter.base.provider.BaseNod...
package com.source.getbus1; import android.app.Activity; import android.content.Context; import android.support.annotation.LayoutRes; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; impo...
package br.com.furb.repository; import br.com.furb.domain.EstoqueProduto; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; import java.util.Optio...
package bakery; import java.io.File; import java.io.FileNotFoundException; import java.util.*; import java.util.Map.Entry; /** * High level store operations and data storage * * @author rcj, anhtran9 * @version 06/17/14 * */ public class Store { /** The store inventory, indexed by id */ ...
/* * Copyright 2002-2023 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
package net.notfab.dimensionchanger; import lombok.Getter; import net.notfab.dimensionchanger.listener.Listeners; import net.notfab.spigot.simpleconfig.SimpleConfig; import net.notfab.spigot.simpleconfig.SimpleConfigManager; import net.notfab.spigot.simpleconfig.spigot.SpigotConfigManager; import org.bukkit.plugin.jav...
package riomaissaude.felipe.com.br.riosaude; import android.support.test.runner.AndroidJUnit4; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert...
package com.myth.springboot.dao; import com.myth.springboot.entity.User; import org.apache.ibatis.annotations.Mapper; @Mapper public interface LoginMapper { //查找用户 User selectUser(String name); int updatePassword(String u_password,String u_name); }
import packets.CommandPacket; import packets.*; import packets.UserPacket; import packets.User; import services.*; import java.io.File; import java.io.IOException; import java.net.*; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Scan...
package com.example.calendar_02; import java.util.Calendar; public class SpecialCalendar { /** * 判断year是否为闰年 * 是:返回true,否:返回false * @param year * @return */ public static boolean isLeapYear(int year) { if (year % 100 == 0 && year % 400 == 0) { return true; } else if (year...
package irix.convertor.sections; import irix.measurement.service.DoseRateImp; import irix.measurement.service.LocationMeasurementAttributesImp; import irix.measurement.service.LocationMeasurementImp; import irix.measurement.service.MeasurementImp; import irix.measurement.service.MeasurementsImp; import irix.measuremen...
/* * 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 com.bookstore.servlets; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException...
package str; import java.awt.Color; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * The Convert class provides convenient static methods to convert * strings to integers, etc. */ public class Convert { // regular expressions public st...
package StellarisDK.FileClasses; import java.util.regex.Pattern; public class DataPattern { /* Groups are always defined as follows: 1 : Key 2 : Modifier specific for conditions 3 : Value 4 : Comments, if applicable */ // Pattern matches for single value variable ...
package com.demo.entities; import java.util.HashSet; import java.util.Set; import org.apache.ibatis.type.Alias; /** * 用户表 * * @author Administrator * */ @Alias("User") public class User extends BaseEntity { private static final long serialVersionUID = -1547458917316008286L; /** * 用户ID */ private int us...
package io.dcbn.backend.password_reset.models; import io.dcbn.backend.authentication.models.DcbnUser; import io.jsonwebtoken.Jwts; import io.jsonwebtoken.SignatureAlgorithm; import io.jsonwebtoken.security.Keys; import lombok.Setter; import org.springframework.beans.factory.annotation.Value; import org.springframework...
package com.lenovohit.hcp.finance.model; import java.math.BigDecimal; import java.util.Date; import javax.persistence.Entity; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import com.lenovohit.core.model.BaseIdModel; import com.lenovohit.hcp.base.annotation....
package com.track.common.trans; /** * Rpc响应 * * @author zap * @version 1.0, 2017/11/20 */ public class RpcResponse { private String id; private Throwable error; private Object result; public boolean isError() { return null != this.error; } public String getId() { return ...
package com.lab.androidalarm; import androidx.appcompat.app.AppCompatActivity; import androidx.core.content.ContextCompat; import android.content.Context; import android.content.SharedPreferences; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android...
/* Ara - capture species and specimen data * * Copyright (C) 2009 INBio (Instituto Nacional de Biodiversidad) * * 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 Lic...
package com.microsoft.bingads.v10.api.test.entities.ad_extension.review; import com.microsoft.bingads.v10.api.test.entities.PerformanceDataTestHelper; import com.microsoft.bingads.v10.bulk.entities.BulkAdGroupReviewAdExtension; import org.junit.Test; public class BulkAdGroupReviewAdExtensionReadWriteTest { @Test...
package main; import java.nio.ByteBuffer; import java.util.ArrayList; public class GL3dObject { ArrayList<Vertex> vertexes = new ArrayList<>(); ArrayList<Face> faces = new ArrayList<>(); public int[] VAO = new int[1]; private float[] position = new float[3]; public GL3dObject() { position[0] = 0; position...
package com.pe.sanpedro.mybatis.mapper; import java.util.List; import com.pe.sanpedro.model.Especialidad; public interface EspecialidadMapper { public List<Especialidad> listaEspecialidades() throws Exception; }
package bd.ac.du.iit.bsse0516; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; public class CodeReader { private String filePath; public CodeReader(String filePath) { this.filePath = filePath; } public String getCode() { String data...
package ru.skillfactory; import ru.skillfactory.actions.*; /** * Класс, который запускает общение с пользователем. */ public class StartUI { /** * Здесь будет происходить инициализация меню, вы * 1. Авторизовываете пользователя. * 2. Печатаете меню. * 3. В зависимости от введённого числа...
package com.novakivska.app.classwork.lesson16; /** * Created by Tas_ka on 5/12/2017. */ public class ACMEBicycle implements Bicycle, PartsStandard, Maintenance { int cadence = 0; int gear = 10; int speed = 5; @Override public void changeGear(int newValue) { this.gear = newValue; } ...
package com.okayboom.particlesim.physics; import com.pholser.junit.quickcheck.generator.GenerationStatus; import com.pholser.junit.quickcheck.generator.Generator; import com.pholser.junit.quickcheck.random.SourceOfRandomness; public class VectorGen extends Generator<Vector> { private static final double chanceOfZer...
package by.orion.onlinertasks.common.triple; public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> { /** Serialization version */ private static final long serialVersionUID = 1L; /** Left object */ private final L left; /** Middle object */ private final M middle; /** Right ...
package carbase.connection; import java.sql.*; import javax.swing.JFrame; import javax.swing.JOptionPane; public class Operations { public static boolean isLogin(String username, String password, JFrame frame) { try { Connection myConn = MySQLConnection.getConnection(); String mySqlQuery = "SELECT UID, Nic...
/** * Created with IntelliJ IDEA. * User: Administrator * Date: 12/03/13 * Time: 14:33 * To change this template use File | Settings | File Templates. */ import com.sun.corba.se.impl.logging.ORBUtilSystemException; import java.math.*; public class SortTest { public static void main (String[] arg...
package cn.kgc.service; import cn.kgc.domain.Accountes; import java.util.List; public interface NewOrderService { //查询最新订单 public List<Accountes> findneworder(); }
package com.gestion.servlet; import java.io.IOException; import java.text.SimpleDateFormat; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; ...
package cz.dix.alg.genetics.strategy.impl; import cz.dix.alg.genetics.Population; import cz.dix.alg.genetics.PopulationMember; import cz.dix.alg.genetics.strategy.ReplacementStrategy; /** * Simple replacement strategy that replaces the old member by the new member (1:1). * * @author Zdenek Obst, zdenek.ob...
package com.androidvoyage.bmc.utils; import android.annotation.SuppressLint; import android.content.ContentResolver; import android.content.ContentUris; import android.content.Context; import android.database.Cursor; import android.net.Uri; import android.os.Build; import android.os.Environment; import android.provide...
package com.barrunner.model; import com.badlogic.gdx.Gdx; public class HeadsUpDisplay { /* Variables */ private float timeElapsed; private World world; /* Constructors */ public HeadsUpDisplay(World world) { this.world = world; InitializeHUD(); } /* Methods */ public void update() { time...
package com.lzm.KnittingHelp.db.exceptions; public class PartException extends Exception { public PartException(String message) { super(message); } }
package structural.flyweight; /** * @author Renat Kaitmazov */ /** * A class whose instances need to be created in a huge amount. * Such a class must have intrinsic attributes which are shared amongst * other instances, and extrinsic attributes which are unique to each * instance. The intrinsic attributes are u...
/* COPYRIGHT NOTICE Copyright 2017 Intellect Design Arena Limited. All rights reserved. These materials are confidential and proprietary to Intellect Design Arena Limited and no part of these materials should be reproduced, published, transmitted or distributed in any form or by any means, electronic, mechanical, pho...
package cn.org.metter.hitogether_android.useclass; /** * Created by Administrator on 2016/1/1. */ public class ActInformation { }
package bnogent.m; public class Value { private boolean animation = false; private double initValue; private double finalValue; private double currentValue; private long startTime; private int delay; public Object easing; public Value(double v) { setVal(v); } public ...
package usaco; import java.io.File; import java.io.IOException; import java.nio.file.*; import java.util.List; import static org.hamcrest.CoreMatchers.*; import org.junit.Assert; import org.junit.jupiter.api.Test; class UsacoTest { public UsacoTest() { } @Test public void tttt_bronze_open18...
package practicedemo; import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("enter age"); Scanner sc= new Scanner(System.in); int age = sc.nextInt(); if(age > 18) System.out.println("adult"); else System.ou...
public class Main { public static void main(String[] args) { HorseManager horseManager = new HorseManager(); horseManager.setHorseScreen(new ConsoleScreen()); horseManager.addHorse(HorseFactory.create(HorseType.Jeju)); horseManager.addHorse(HorseFactory.create(HorseType.My)); ...
package com.atguigu.java; class PrintHeart{ public static void main(String[] args){ System.out.print("\t"); System.out.print("*"); System.out.print("\t"); System.out.print("\t"); System.out.print("\t"); System.out.print("\t"); System.out.print("\t"); System.out.print("\t"); System.out.print("\t");...
package edu.ktu.ds.lab1b.stasaitis; public class CPU_Select { public CPU_Data Current_Data = new CPU_Data(); public CPU_Data getCpuByBase(int min, int max) { CPU_Data data = new CPU_Data(); for (CPU cpu: Current_Data ) { if(cpu.Get_Cpu_Base_Min() >= min...
package br.com.saulofarias.customerapi.constants; public class MessagesConst { public static String CUSTOMER_NOT_FOUND = "Could not find customer "; public static String CITY_NOT_FOUND = "Could not find city "; public static String ID_NOT_NULL = "Id cannot be null"; public static String NAME_NOT_EMPTY = "The na...
package com.wipro.exceptionhandling; import java.util.Scanner; @SuppressWarnings("serial") class InvalidCountryException extends Exception { InvalidCountryException() { super("User Outside India cannot be registered"); } } public class UserRegistration { public void registerUser(String username,String userCount...
package cn.edu.nju.software.timemachine.service; import java.util.List; import cn.edu.nju.software.timemachine.entity.User; import cn.edu.nju.software.timemachine.util.Constraint; public interface IUserService<T extends User> extends IService<T> { public boolean addUser(T user); public T getUser(long id); p...
package com.neo.listener; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.context.event.ApplicationReadyEvent; import org.springframework.context.ApplicationListener; /** * ApplicationReadyEvent is sent after any application and command-line runners have been called. * It indicates that the applic...
/* * Copyright 1999-2017 Alibaba Group Holding Ltd. * * 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.geniusgithub.lookaround.test; import java.util.ArrayList; import java.util.List; import org.json.JSONException; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ImageView; import ...
package com.gsccs.sme.plat.svg.dao; import com.gsccs.sme.api.domain.StatistGroup; import com.gsccs.sme.plat.svg.model.SclassT; import com.gsccs.sme.plat.svg.model.SclassTExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SclassTMapper { int countByExample(SclassTExample ...
package com.beike.service.background.goods; import java.util.List; import com.beike.entity.background.goods.Goods; import com.beike.form.background.goods.GoodsForm; import com.beike.form.background.top.TopForm; /** * Title : GoodsService * <p/> * Description :商品信息服务接口类 * <p/> * CopyRight : CopyR...
package com.sirma.itt.javacourse.intro.task5.arrayReverse; import java.util.ArrayList; import java.util.List; import com.sirma.itt.javacourse.InputUtils; /** * Class for reversing arrays of Integers. * * @author simeon */ public class ReverseArray { /** * Reverses an array of objects. * * @param arrayO...
package com.xld.core.dao.user; import com.xld.core.entity.DO.UserDO; import com.xld.core.entity.VO.UserVO; import org.springframework.stereotype.Repository; import java.util.List; /** * 企业用户数据层 * @author xld */ @Repository public interface IUserMapper { /** * 获取用户信息 * @return 用户信息 */ List<U...
package webuters.com.geet_uttarakhand20aprilpro.activity; import android.app.Activity; import android.app.ProgressDialog; import android.content.Intent; import android.os.AsyncTask; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.Lis...
import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class FileToList { public static List<Kid> readFileToKidList (File file) { List<Kid> chosenListName = new ArrayList<>(); try{ ...
/* ********************************************************************************** * MIT License * * * * Copyright (c) 2017 Josh Larson ...
package com.example.ssandbox_testing; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Matrix; import android.os.Bundle; import android.os.Environment; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; im...
package com.psing.professional_streaming.dataobject; import lombok.Data; import javax.persistence.Entity; import javax.persistence.Id; /** *专业 */ @Entity @Data public class Major { @Id private String majorId; /** * 专业负责人 */ private String charge; /** * 学院 */ private ...
package Keywords; import java.nio.file.Files; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.time.LocalDate; import java.time.Month; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; im...
package classes; public class Customer { private int ID; private static int counter = 1; private int meat; private int vegetables; private int fruits; private Till till; public Customer(int meat, int vegetables, int fruits, Till till) { this.ID = counter; counter++; this.meat = meat; thi...
package models; /* Oferta --- status {Nowa OR Odrzucona OR Zakońcozna} typ {Sprzedaż OR Kupno} prowizja od wystawienia oferty prowizja od zawarcia transakcji --- wyświetl() wylistuj oferty() */ import com.google.gson.reflect.TypeToken; import lombok.Getter; import lombok.Setter; import utils.FileUtils; import utils....
package game.states; import java.awt.Graphics2D; import game.core.GameTracker; import game.input.GameInput; import game.worlds.World; public class GameState extends State { private GameTracker tracker; private World world; public GameState(GameTracker tracker, GameInput input) { world = new World(); world....
package symap.contig; import java.awt.*; import java.util.Arrays; import javax.swing.*; import javax.swing.event.ChangeEvent; import javax.swing.event.ListSelectionListener; import javax.swing.event.ListSelectionEvent; import javax.swing.event.PopupMenuEvent; import java.awt.event.ActionEvent; import java.awt.event.A...
/** * */ package TestContent; import org.junit.Test; /** * Test of the Content class * * @author Alex Dalencourt * @author Sellenia Chikhoune * */ public interface TestContent { @Test public void test_getDescription(); }
package com.example.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.PathSelectors; import springfox.documentation.service.ApiInfo; import springfox.documentation.service.Contact; import springfox.documentat...
package com.esum.common.exception; import com.esum.framework.core.exception.SystemException; /** * XTrusException은 xTrus에서 발생하는 모든 exception의 최상위를 나타낸다. * * Copyright(c) eSum Technologies, Inc. All rights reserved. */ public class XTrusException extends SystemException { public XTrusException(String location...
package mypack; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JDialog; import javax.swing.JTable; import javax.swing.border.BevelBorder; import javax.swing.border.EmptyBorder; import javax.swing.border.LineBorder; import java.awt.Color; import javax.swing.table.DefaultTab...
package test.freelancer.com.fltest.guides.adapter; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import test.freelancer.com.fltest.R; import test.freelancer.com.fltest.data.entity.Guide; /** ...
package com.romens.yjkgrab; /** * Created by myq on 15-12-11. */ public class Constant { public static final String OBJECT_ID="objectId"; public static final String STATUS_WAITING_GRAB="待抢"; public static final String STATUS_WAITING_TAKE="待取"; public static final String STATUS_WAITING_SEND="待送"; ...
package tests; import controller.OperationFailedException; import integration.*; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import util.Amount; import util.ItemIdentifier; import static org.junit.jupiter.api.Assertions.assertEquals; import stati...
package com.lenovohit.ssm.treat.transfer.manager; import java.util.List; import com.lenovohit.ssm.treat.transfer.dao.RestResponse; public class HisListResponse<T> extends HisResponse { public HisListResponse(){ } public HisListResponse(RestResponse reponse){ super(reponse); } private List<T> hisList; public ...
package rimabegum.example.com.quizrima; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.ScrollView; import android.widget.TextView; public class GenaralKnowledge extends AppCompatAct...
package pecia.socialmap; import java.util.Date; /** * Created by Francesco on 15/06/17. */ public class ChatMess { private String messText; private String messUser; private long messTime; private String topic; private String UserId; public String getUserId() { return UserId; }...
package com.openfarmanager.android.filesystem.actions.multi.network; import android.content.Context; import com.openfarmanager.android.filesystem.actions.OnActionListener; import com.openfarmanager.android.fragments.BaseFileSystemPanel; import com.openfarmanager.android.fragments.NetworkPanel; import com.openfarmanag...
package psoft.backend.dao; import org.springframework.data.jpa.repository.JpaRepository; import psoft.backend.model.Comentario; import java.io.Serializable; import java.util.List; public interface ComentarioDAO<T, ID extends Serializable> extends JpaRepository<Comentario, Long> { Comentario save(Comentario come...
package structural.decorator; /** * @author Renat Kaitmazov */ public class SportsCar extends CarDecorator { /*--------------------------------------------------------*/ /* Constructors /*--------------------------------------------------------*/ public SportsCar(Car car) { super(car); ...
package cn.com.finn.util; /** * * @author Finn Zhao * @version 2017年2月15日 */ public class HashCodeUtils { /** * The default initial value to use in reflection hash code building. */ private static final int DEFAULT_INITIAL_VALUE = 17; /** * The default multipler value to use in reflect...