Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNewPos (0.08 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

        }
    
        public String getNewReading() {
            return newReading;
        }
    
        public void setNewReading(final String newReading) {
            this.newReading = newReading;
        }
    
        public String getNewPos() {
            return newPos;
        }
    
        public void setNewPos(final String newPos) {
            this.newPos = newPos;
        }
    
        public String getToken() {
            return token;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                            writer.write(Constants.LINE_SEPARATOR);
                            return new KuromojiItem(item.getId(), item.getNewToken(), item.getNewSegmentation(), item.getNewReading(),
                                    item.getNewPos());
                        }
                        return null;
                    } finally {
                        item.setNewToken(null);
                    }
                } catch (final IOException e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top