This file is indexed.

/usr/share/perl5/Juman/KULM/Morpheme.pm is in libjuman-perl 7.0-3.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
# $Id: Morpheme.pm,v 1.2 2011/07/01 04:02:16 kawahara Exp $
package Juman::KULM::Morpheme;
require 5.000;
use Carp;
use strict;

=head1 NAME

Juman::KULM::Morpheme - KULM 互換 API

=head1 SYNOPSIS

このクラスをミキシングして使用する.

=head1 DESCRIPTION

C<KULM::Juman::M> 互換のメソッドを C<Juman::Morpheme> クラスに追加する.

=head1 METHODS

=over 4

=item get ($attr)

指定された属性を返す.

=cut
my %KULM = ( M      => 'midasi',
	     Y      => 'yomi',
	     G      => 'genkei',
	     H1     => 'hinsi',
	     H1_ID  => 'hinsi_id',
	     H2     => 'bunrui',
	     H2_ID  => 'bunrui_id',
	     K1     => 'katuyou1',
	     K1_ID  => 'katuyou1_id',
	     K2     => 'katuyou2',
	     K2_ID  => 'katuyou2_id',
	     I      => 'imis',
	     Doukei => 'doukei' );

sub get {
    my( $this, $attr ) = @_;
    if( defined $KULM{$attr} ){
	$attr = $KULM{$attr};
	$this->$attr();
    } else {
	croak "Unknown attribute: $attr";
    }
}

=item gets (@attr)

指定された属性のリストを返す.C<all> という指定が可能である.

=cut
sub gets {
    my( $this, @attr ) = @_;
    if( $attr[0] eq "all" ){
	map( $this->$_(), @Juman::Morpheme::ATTRS );
    } else {
	map( $this->get($_), @attr );
    }
}

=item string ($delimiter, @attr)

指定された属性を C<$delimiter> で結合した文字列を返す.

=cut
sub string {
    my $this = shift;
    my $delimiter = shift;
    join( $delimiter || " ", grep( defined($_), $this->gets( @_ ? @_ : "all" ) ) );
}

1;

=back

=head1 SEE ALSO

=over 4

=item *

L<Juman::Morpheme>

=item *

L<KULM::Juman::M>

=back

=head1 AUTHOR

=over 4

=item
土屋 雅稔 <tsuchiya@pine.kuee.kyoto-u.ac.jp>

=cut

__END__
# Local Variables:
# mode: perl
# use-kuten-for-period: nil
# use-touten-for-comma: nil
# End: