Package beans.service.quickInput

Examples of beans.service.quickInput.QuickInputChunk


                for (int i = 0; i < sstData.dniList.size(); i++) {
                    DniData dni = sstData.dniList.get(i);

                    //Заполнение чанка для быстрого ввода
                    QuickInputChunk c = new QuickInputChunk();
                    c.isUpdate = true;
                    try {
                        //Заболевание
                        c.nSyst = sstData.nSyst;
                        c.emcID = emcID;
View Full Code Here


        private boolean                     exitFlag;
        private ArrayList<Thread>           threadList = new ArrayList<Thread>();
       
        public QuickInputChunk getNext(int threadID){
            synchronized (syncObject){
                QuickInputChunk chunk = null;
                while (chunk == null) {
          for (Iterator<QuickInputChunk> it = chunkList.iterator(); it.hasNext();) {
            QuickInputChunk      cur = it.next();
            if ((cur.nSyst % THREADS_COUNT) == threadID) {
              chunk = cur;
              it.remove();
              break;
            }
View Full Code Here

            queue.registerThread(this);
        }

        @Override
        public void run() {
            QuickInputChunk chunk = queue.getNext(threadID);
            while (chunk != null){
                writeChunk(chunk);
                chunk = queue.getNext(threadID);
            }
        }
View Full Code Here

       setDlgResult(ModalDialog.DLG_CANCEL);
       dispose();
    }//GEN-LAST:event_btCancelActionPerformed

    private void btOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btOKActionPerformed
        QuickInputChunk c = new QuickInputChunk();
        //Заболевание
        try {
            String checkUET = FormatChecker.checkUet(uet);
            if (checkUET == null) {
                try {
View Full Code Here

TOP

Related Classes of beans.service.quickInput.QuickInputChunk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.