text
stringlengths
10
2.72M
package com.project.model; public class Field { String field; String fieldType; String fieldLength; String isMandatoryField; public String getField() { return field; } public void setField(String field) { this.field = field; } public String getFieldType() { return fieldType; } public void setFiel...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package co.th.aten.network.entity; import java.io.Serializable; import java.util.Collection; import java.util.Date; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; impo...
package com.example.tanapon.computerproject1; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.SharedPreferences; import android.preference.PreferenceManager; import android.view.LayoutInflater; import android.view.View; import android.view.Vie...
import java.net.*; import java.io.*; import java.util.*; import java.util.concurrent.*; //**************************************************************************** public class Joueur{ private String id; private int port; private boolean pret; private int score; private int y; private int x; private...
/* * [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 the ter...
import java.net.URI; import java.net.URISyntaxException; /** * Created by soomin on 2015. 12. 4.. */ public class TestURI { public static void main(String[] args) throws URISyntaxException { URI uri = new URI("http://example.com/foo/bar/42?param=true"); String[] sa = uri.getPath().split("/"); ...
package quiz; import java.util.Scanner; public class Quiz10 { public static void main(String[] args) { /* * 정수 3개를 받아서 큰값, 중간, 작은값을 구분하면 됩니다. (단, 세값이 같은 경우는 예외로 한다 ) */ Scanner scan = new Scanner(System.in); System.out.print("> "); int a = scan.nextInt(); System.out.print("> "); i...
/** * @(#)RpcDecoder.java, 2020/7/14. * <p/> * Copyright 2020 Netease, Inc. All rights reserved. * NETEASE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.xx.rpc.protocol; import com.xx.rpc.util.ProtostuffSerialization; import com.xx.rpc.util.Serialization; import io.netty.buffer.ByteBuf...
import java.awt.image.BufferedImage; import java.io.File; import java.nio.file.CopyOption; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; import java.awt.Color; import java.awt.EventQueue; import java.awt.Font; import java.awt.Imag...
package com.santander.bi.DAO; import java.util.List; import org.apache.log4j.Logger; import org.hibernate.Query; import org.hibernate.SessionFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import com.santander.bi.model.ChartProc; @R...
package me.bemind.fingerprinthelper; import android.hardware.fingerprint.FingerprintManager; /** * Created by angelomoroni on 06/02/17. */ public interface AuthenticationCallback { void onAuthenticationError(int errMsgId, CharSequence errString) ; void onAuthenticationHelp(int helpMsgId, CharSequence help...
package com.vibexie.jianai.Utils; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class TimeUtil { /** * 获取当前标准时间 格式 年:月:日 时:分:秒 * @return */ public static String getCurrentStandardTime(){ Date date=new Date(); DateFormat dateFormat...
package com.company.carseller.action; import com.company.carseller.database.LanguagesDAO; import com.company.carseller.entity.Transmission; import com.company.carseller.database.TransmissionDAO; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest...
package com.lucasgr7.hexagontest.controller.contract; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; import com.lucasgr7.hexagontest.controller.contract.dto.DtoSaveVehicleTypeRequest; import com.lucasgr7.hexagontest.controller.contract.dto.DtoUpdateVehicleTypeRequest;...
package com.shubh.javaworld; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class PalindromicPair { public List<List<Integer>> palindromePairs(String[] words) { List<List<Integer>> results = new ArrayList<List<Integer>>(); if (words == null) { return...
package com.test.accessmodifiers; /** * Created by srikanth on 23/12/16. */ public class DefaultClass { /* Default Public Private Protect */ int count = 100; String message = "Hello"; int getCount(){ return count; } void printMessage(){ S...
package littleservantmod.client.gui; import littleservantmod.api.IServant; import littleservantmod.api.profession.behavior.IBehavior; import net.minecraft.client.gui.GuiButton; import net.minecraft.client.gui.inventory.GuiContainer; public class ElementChangeBehaviorCurrent extends ElementChangeBehavior { protected...
package com.tencent.mm.plugin.appbrand.dynamic.widget; import android.util.Log; import com.tencent.mm.ipcinvoker.wx_extension.a.a; import com.tencent.mm.ipcinvoker.wx_extension.a.a.b; import com.tencent.mm.sdk.platformtools.bi; import com.tencent.mm.sdk.platformtools.x; import com.tencent.mm.storage.c; class c$1 impl...
package capitulo07; import java.security.SecureRandom; public class DeckOfCards { private Card[] deck; // array de objetos Card private int currentCard; private static final int NUMBER_OF_CARDS = 52; private static final SecureRandom randomNumbers = new SecureRandom(); public DeckOfCards() { String[] faces =...
package rent.api.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.SimpleGrantedAuthority; import org.springframework.security.core.userdetails.User; import org.springframework.security.c...
package com.fourstay.pages; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import com.fourstay.utilities.Driver; public class SearchPage { public SearchPage() { PageFactory.initElements(Driver.getInstance(), this); } @FindBy(...
public class first { public static void main(String[] args){ //System.out.println("This is first file of java in GIT"); int n = 1000; int[] a = new int[n*n*n*n]; } }
package redis_test; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.JedisPoolConfig; /** * Description: * * @author Baltan * @date 2019/1/7 15:59 */ public class JedisPoolUtil { private static volatile JedisPool jedisPool; private JedisPoolUtil() { ...
import java.util.*; public class TheKWeakestRowsInAMatrix { public static int[] kWeakestRows(int[][] mat, int k) { int[] res = new int[k]; HashMap<Integer,Integer> map = new HashMap<>(); int num =0; for (int[] row : mat){ int add =0; for (int i =0;i< row.leng...
package com.e6soft.bpm.service; import org.jdom.Element; import com.e6soft.bpm.model.FlownodeMsg; import com.e6soft.core.service.BaseService; /** * 节点消息配置 * @author 陈福忠 * */ public interface FlownodeMsgService extends BaseService<FlownodeMsg,String> { /** * 根据nodeId获取对应的消息配置 * @param nodeId * @return ...
package com.serhii.cryptobook.project.service.impl; import javax.crypto.BadPaddingException; import javax.crypto.Cipher; import javax.crypto.IllegalBlockSizeException; import javax.crypto.NoSuchPaddingException; import java.security.InvalidKeyException; import java.security.Key; import java.security.NoSuchAlgorithmExc...
package ${package}.models; public class SampleModel { }
package androidx.databinding; public class DataBinderMapperImpl extends MergedDataBinderMapper { DataBinderMapperImpl() { addMapper(new tkhub.project.kesbewa.DataBinderMapperImpl()); } }
package Lab01.Zad4; public class Duck { FlyBehavior fly_behavior; QuackBehavior quack_behavior; public void setFlyBehavior (FlyBehavior fly) { fly_behavior = fly; } public void setQuackBehavior(QuackBehavior quack) { quack_behavior = quack; } public void performFly() { ...
package io.ygg.common; import org.junit.Test; import static org.junit.Assert.assertNotNull; /** * Created by Miu on 11/01/2017. */ public class ConfigTest { @Test public void simpleConstructorTest() { Config config = new Config(); assertNotNull(config); } }
package gui; import online.FBPlayer; import online.OnlineGameService; import sound.MP3; import javax.imageio.ImageIO; import javax.swing.*; import java.awt.*; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; import java.io.IOException; /** * extends from Cl...
package trees.citrus; import java.util.Comparator; import java.util.HashSet; import trees.Map; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; public class Citrus<K, V> implements Map<K, V> { private final Comparator<? super K> comparator; private final K min; private f...
package commands; import app.Application; public class AddShop implements Command{ @Override public String getCommand() { return "ДОБАВИТЬ_МАГАЗИН"; } @Override public void parceCommand(String command, Application application) { application.addShop(command); } }
package com.tyss.capgemini.loanproject.services; import com.tyss.capgemini.loanproject.exceptions.FormReviewChoiceException; import com.tyss.capgemini.loanproject.factory.FactoryClass; import com.tyss.capgemini.loanproject.validation.ValidationClass; public class LadServicesImplementation implements LadServicesDeclar...
public class Employee { private String name; private String iD; private String hireDate; public Employee(String n, String i, String hire) { name = n; iD = i; hireDate = hire; } public String getName() {return name;} public void setName(String name) {this.name = name;} public String getiD() {...
package com.mySampleApplication.server.services; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import com.mySampleApplication.client.services.CustomerTypeService; import com.mySampleApplication.shared.model.CustomerTypeData; import java.util.ArrayList; import java.util.List; /** * @author zhouguixing ...
package com.lolRiver.river.persistence.interfaces; import com.lolRiver.river.models.State; import com.lolRiver.river.models.Video; import java.util.List; /** * @author mxia (mxia@lolRiver.com) * 9/30/13 */ public interface VideoDao { // get the Video with given id public Video getVideoFromId(final...
/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2015 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Ge...
package controller; import java.time.LocalDate; import java.time.LocalTime; import java.util.ArrayList; import java.util.List; import ordination.DagligFast; import ordination.DagligSkaev; import ordination.Laegemiddel; import ordination.Ordination; import ordination.PN; import ordination.Patient; import storage.Stora...
/** * JVM에 의해 자동 생성되는 main 스레드에 의해 자동 호출되는 엔트리포인트 * @author 이대용 * */ public class ThreadExample { public static void main(String[] args) throws InterruptedException { System.out.println("메인스레드 시작됨..."); for (int i=0; i<100; i++) { System.out.println("메인스레드 i 출력: " + i); Thread.sleep(100); if (i == ...
package edu.curtin.comp2008.mad2020assignment1; import androidx.fragment.app.Fragment; /** * WhichFrag is an interface that contains changeFrag and changeFragRowCol method */ public interface WhichFrag { //changeFrag method will be used to change the fragment, between FragAHorizontal and FragAVertical void ...
package com.app.sapient.grade.dto; import java.util.List; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Getter; import lombok.Setter; @Getter @Setter @JsonInclude(value = Include.N...
package edu.upc.entity; import android.util.Log; import android.util.JsonReader; import android.util.JsonWriter; import android.util.Log; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonElement; import com.google.gson.JsonParser; import java.io.BufferedReader; import jav...
package com.epam.bar.dao; import com.epam.bar.entity.User; import com.epam.bar.exception.DaoException; import java.util.Optional; /** * @author Kirill Karalionak * @version 1.0.0 */ public abstract class AbstractUserDao extends BaseDao<String, User> { /** * Find password * * @param key the key...
package com.rochards.personapi.dto.request; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import org.hibernate.validator.constraints.br.CPF; import javax.validation.Valid; import javax.validation.constraints.NotBlank; import javax.validation.constraints....
package com.dorothy.railway999.interceptor; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; impor...
package com.tencent.mm.plugin.mall.ui; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; import com.tencent.mm.ab.l; import com.tencent.mm.bg.d; import com.tencent.mm.k.g; import com.tencent.mm.model.q; import com.tencent.mm.platformtools.ab; import com....
package switch2019.project.utils.customExceptions; public class NoPermissionException extends RuntimeException { public NoPermissionException (String message) { super (message); } }
package quoai.challenge; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.RandomAccessFile; import java.net.URL; import java.net.URLConnection; import java.util.zip.GZIPInputStream; public class Test { static final String USER_AGENT = "Mozilla/5.0 (Windows N...
package couchbase.sample.report; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import couchbase.sample.json.ClusterMapObj; import couchbase.sample.util.CBRestAPIUtil; import couchbase.sample.vo.Server; public class ClusterStatReport extends BaseR...
package com.ibm.ive.tools.japt.obfuscation; import java.util.*; import com.ibm.jikesbt.*; import com.ibm.ive.tools.japt.*; /** * Encapsulates functionality to rename the methods and fields of a single class. * <p> * Will also rename related methods of separate classes and interfaces, such as overriding or...
package application; import application.blocks.*; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.scene.control.*; import javafx.scene.layout.AnchorPane; import javafx.scene.layout.VBox; import javafx.stage.FileChooser; import javafx.stage.Stage; import java.io.File; import java.io.IOException;...
public class Factory { public static Fruit getFruit(String fruit) { if(fruit.equalsIgnoreCase("apple")) { return new Apple(); } else if(fruit.equalsIgnoreCase("banana")) { return new Banana(); } else { System.out.println("ÕÒ²»µ½¸ÃÀà"); return null; } } }
package de.jmda.core.mproc.task; import static de.jmda.core.util.StringUtil.sb; import java.io.File; import java.io.IOException; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import org.apache.commons.io.FileUtils; i...
package com.intramail.model; import javax.validation.constraints.Size; import org.hibernate.validator.constraints.NotEmpty; public class User { @NotEmpty String name; @NotEmpty @Size(min=16,max=40) String email; @NotEmpty @Size(min=8,max=20) String password; @Size(max=40) String altemail; public Str...
package assgn.JianKai; import assgn.Login; import java.text.SimpleDateFormat; import java.util.Calendar; import javax.swing.table.DefaultTableModel; import listLink.store; public class report extends javax.swing.JFrame { store save; public report() { initComponents(); } pub...
package lab3; public class HelloWorld { public static void main(String[] args) { int x=100; System.out.println("Hello, World !!!!\n"); System.out.println("\tชื่อ นางสาวพีรพร ขุนพิบูล"); System.out.println("รหัสนักศึกษา 362211760009"); System.out.println("สาขา การจัดการเทคโนโ...
package httf.ui; import httf.util.*; public class TextLine { public String text; public Bitmap[] chars; public int x; public int y; public TextLine(String text, int x, int y) { this.text = text; this.x = x; this.y = y; this.chars = new Bitmap[text.length()]; for(int i = 0; i < chars.length; i++) { ...
package com.tutorial.basics.constants; enum Coffee { SMALL(1) , MEDIUM(2) , LARGE(3); private int value; private Coffee(int value) { this.value = value; } public int getValue(){ return this.value; } } public class PrintDays { public static void main(String[] args) { CoffeeShop.buyCoffee(Co...
package com.ebupt.portal.canyon.common.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.cache.ehcache.EhCacheManagerFactoryBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core....
package com.designPattern.SOLID.srp.problem; public class BankService { public void debit(double amount) { // DEBIT ACCOUNT } public void credit(double amount) { // CREDIT ACCOUNT } public void printStatement() { // PRINT ACCOUNT STATEMENT } public void loanInterestInfo(double amount, String loanType) ...
package com.giga.service; import com.giga.entity.Category; import com.giga.repository.ICategoryRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class CategoryService implements ICategoryService { @Aut...
package com.espendwise.ocean.common.emails; public interface EmailType { public String name(); }
package com.lay.android_plugin; import android.content.Context; import android.content.res.AssetManager; import android.content.res.Configuration; import android.content.res.Resources; import android.os.Environment; import android.util.DisplayMetrics; import android.util.Log; import java.io.File; import java.lang.ref...
package cn.chinaunicom.monitor.beans; import java.util.List; /** * Created by yfyang on 2017/8/10. */ public class Center { //public List<CenterEntity> center; public List<CenterEntity> records; public int recordCount; }
package com.projet3.library_webservice.library_webservice_business.impl; import java.sql.SQLException; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import org.springframework.bea...
package lesson9; public class Lesson9 { public static void main(String[] args) { //hello(args); showMaxData(); sortData(); // 9-9 int[][] arr = { { 3, 1, 4, 1, }, { 5, 9, 2, }, { 6, 5, }, { 3, }, }; printTwoDimentionalArray(arr); } /** * 9-6 */ public s...
package com.tencent.rtmp; import com.tencent.liteav.basic.util.a; import java.io.File; import java.text.SimpleDateFormat; import java.util.Date; class TXLivePusher$3 implements Runnable { final /* synthetic */ TXLivePusher this$0; final /* synthetic */ String val$videoFilePath; TXLivePusher$3(TXLivePushe...
class InicialiacacaoErroCompilacao { public static void escopoVar() { /* * Não pode ter uma variavel com mesmo nome da variavel usada no for * antes do looping e nem depois do looping*/ //int i =0; for(int i =0;i<5;i++) { System.out.println(i); } //System.out.println(i); } public st...
package com.monkeyuser.testcases; import org.openqa.selenium.By; import org.testng.annotations.Test; import com.monkeyuser.base.TestBase; public class ComicsSpecificDates extends TestBase{ @Test public void SpecificDatesComics() { driver.findElement(By.xpath("//*[@id=\"list\"]")).click(); //Clicks 'Comic Li...
package oicq.wlogin_sdk.a; public final class af extends a { public int vJA; public af() { this.vJA = 0; this.vIl = 323; } }
package Files; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class Ex1 { public static void main(String[] args) throws Exception { //F...
import java.net.*; import javax.swing.*; /** * Klasa pozwala na sprawne przeprowadzanie meczu. Posiada pola dla serwera i klienta. * */ class ClientManager { public GameWindow gameWindow; ClientManager(GameWindow gameWindow) { this.gameWindow = gameWindow; makeBoard(); } Game boardG...
import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.SwingUtilities; public class Billiard extends JPanel implements Runnable{ int ui_width = 300, ui_height = 300; double oval_w = 10, oval_h = 10; double oval_c...
package com.utils.util.encrypt; public interface EnDecrpt { /** * 设置对称加密使用的密钥 * @param key */ public void setKey(byte[] key); /** * 设置非对称加密的公钥 * @param publicKeyBytes */ public void setPublicKey(byte[] publicKeyBytes); /** * 设置非对称加密的私钥 * @param privateKeyBytes */ public void setPrivateKey(b...
package pro.absolutne.lunchgator.integration.zomato; import com.jayway.jsonpath.JsonPath; import okhttp3.HttpUrl; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; import pro.absolutne.l...
package testSuites; import drivers.DriverContext; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import testClases.Carrusel.AsignarVentaCase; import static drivers.DriverContext.setUp; import static reports.Report.finalAssert; public class A...
package random.gba.loader; import java.util.Date; import java.util.HashMap; import java.util.Map; import fedata.gba.fe6.FE6Data; import fedata.gba.fe7.FE7Data; import fedata.gba.fe8.FE8Data; import fedata.general.FEBase; import fedata.general.FEBase.GameType; import io.FileHandler; import util.DebugPrinter; import ut...
package SP20_simulator; import java.util.Arrays; import java.util.stream.IntStream; /* * 명령어에 대한 정보 저장 */ public class Instruction { ResourceManager rMgr; char[] objectCode; int opcode; String opName; int format; boolean nReg; boolean iReg; boolean xReg; boolean bReg; boolean pReg; boo...
package com.dreamcatcher.plan.controller; 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; import com.dreamcatche...
package com.pybeta.daymatter.ui; import android.os.Bundle; import android.preference.Preference; import android.preference.Preference.OnPreferenceClickListener; import com.actionbarsherlock.app.SherlockPreferenceActivity; import com.pybeta.daymatter.R; import com.pybeta.daymatter.utils.UtilityHelper; import ...
package com.wuxg.docs; import org.springframework.data.annotation.Id; import org.springframework.data.elasticsearch.annotations.Document; import org.springframework.data.elasticsearch.annotations.Field; import org.springframework.data.elasticsearch.annotations.FieldType; import org.wltea.analyzer.lucene.IKAnalyzer; /...
package com.ifli.mbcp.dao.hibernate; import java.sql.SQLException; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; import org.hibernate.Criteria; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.cri...
/* * [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 graph; import java.util.ArrayList; /**************************************************************** * * @author Grupo 11 * * @param <T> * @param <E> * ***************************************************************/ public interface GraphInterface<T,E>{ /*********************************************...
package com.tencent.mm.plugin.remittance.ui; import android.view.View; import android.widget.LinearLayout.LayoutParams; import android.widget.TextView; import com.tencent.mm.plugin.wxpay.a.f; import com.tencent.mm.sdk.platformtools.BackwardSupportUtil.b; import com.tenpay.android.wechat.TenpaySecureEditText; class Re...
package replicatorg.machine.model; import javax.swing.Box; public class ExclusionBox extends Box { public ExclusionBox(int arg0) { super(arg0); // TODO Auto-generated constructor stub } }
package pl.ark.chr.buginator.aggregator.domain; import pl.ark.chr.buginator.domain.BaseEntity; import pl.ark.chr.buginator.domain.core.Error; import javax.persistence.*; import java.time.LocalDateTime; import java.util.Objects; /** * Stores logs of statuses for communication with external platforms. */ @Entity @Ta...
package com.parsermicroservice.parser.Controller; import com.parsermicroservice.parser.Exceptions.ParserException; import com.parsermicroservice.parser.Parser.Parser; import com.parsermicroservice.parser.Repository.ParserRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframew...
package com.hesoyam.pharmacy.pharmacy.model; public enum OrderStatus { CREATED, ACCEPTED }
package main; public class TaillesdiffException extends Exception { }
package com.glory.recyclerviewwithcheckbox; import android.content.Context; import android.support.annotation.NonNull; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox...
package com.rsm.yuri.projecttaxilivre.chat.di; import com.rsm.yuri.projecttaxilivre.TaxiLivreAppModule; import com.rsm.yuri.projecttaxilivre.chat.ui.ChatActivity; import com.rsm.yuri.projecttaxilivre.domain.di.DomainModule; import com.rsm.yuri.projecttaxilivre.lib.di.LibsModule; import javax.inject.Singleton; import...
package tddd24.ajgallery.client; import java.util.ArrayList; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; @RemoteServiceRelativePath("stockPrices") public interface ajGalleryService extends RemoteService { ArrayList<String[]> processInput(Str...
package com.thread.imp.examples; import java.util.concurrent.Callable; public class AvgThread implements Callable<Integer> { public Integer maxEle = 0; public Integer sum = 0; @Override public Integer call() throws Exception { return sum/maxEle; } }
package pro.eddiecache.utils.discovery; import java.io.Serializable; import java.util.ArrayList; public class DiscoveredService implements Serializable { private static final long serialVersionUID = 1L; private ArrayList<String> cacheNames; private String serviceAddress; private int servicePort; private lon...
package restricao; import java.util.ArrayList; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; import javax.persiste...
package kr.pe.ssun.bark; import android.support.annotation.NonNull; import android.support.v4.app.FragmentActivity; import com.facebook.AccessToken; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; import com.google.firebase.auth.FirebaseUser; import com.google.firebas...
package br.com.scd.demo.api.associated; import java.util.List; import java.util.stream.Collectors; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.Re...
package com.asack_software_group.tools.quchan_citizen.fragment; import android.content.Intent; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget...